* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f5f5f5;
    color: #333333;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Logo Header */
.logo-header {
    background-color: #1a1a1a;
    background-image: url('rorobara.png');
    background-size: auto 94%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 26, 26, 0.85);
    pointer-events: none;
    z-index: 0;
}

.logo-header img {
    position: relative;
    z-index: 1;
}

.logo {
    height: 250px;
    width: auto;
    
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

/* Content Section */
.content-section {
    padding: 60px 40px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* About Content */
.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #666666;
    line-height: 1.95;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Hide default bullets for lists with custom bullets */
.space-y-3 {
    list-style: none;
    padding-left: 0;
}

/* Contact Content */
.contact-content {
    display: flex;
    flex-direction: column;
}

.contact-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.label {
    display: block;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Inter', sans-serif;
}

.info-item a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
}

.info-item a:hover {
    color: #0066cc;
    transform: translateX(5px);
}

.org-number {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Login form */
.loginform {
    width: 100%;
}

.loginform .form {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.loginform .sba-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4px 0 8px 0;
}

.loginform .sba-logo a {
    display: inline-flex;
    border-radius: 6px;
}

.loginform .sba-logo a:focus-visible {
    outline: 2px solid rgba(0, 102, 204, 0.5);
    outline-offset: 4px;
}

.loginform .sba-logo a:hover img {
    opacity: 1;
    filter: none;
}

.loginform .sba-logo img {
    display: block;
    height: 40px;
    width: auto;
    
}

.loginform .input-group {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.loginform .input-group:focus-within {
    border-color: #0066cc;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.12);
}

.loginform .input-group-prepend {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    background: #f6f8fb;
    border-right: 1px solid #e6e6e6;
}

.loginform .input-group-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 14px;
}

.loginform .form-control {
    width: 100%;
    height: 44px;
    padding: 10px 12px;
    border: 0;
    outline: none;
    font-size: 14px;
    color: #111827;
    background: transparent;
}

.loginform .form-control::placeholder {
    color: #9ca3af;
}

.loginform .card-footer {
    margin-top: 8px;
}

.loginform .btn {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.loginform .btn.btn-warning {
    width: 100%;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    color: #111827;
    box-shadow: 0 10px 18px rgba(245, 158, 11, 0.22);
}

.loginform .btn.btn-warning:hover {
    filter: brightness(0.98);
}

.loginform .btn.btn-warning:active {
    transform: translateY(1px);
}

.loginform .btn.btn-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
}

.loginform .btn.btn-link:hover {
    text-decoration: underline;
}

.loginform .text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-header {
        padding: 40px 20px;
    }

    .logo {
        height: 180px;
    }

    .content-section {
        padding: 60px 20px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content h3 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-content h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contact-info {
        gap: 40px;
    }

    .info-item a {
        font-size: 16px;
    }

    .loginform .form {
        padding: 14px;
    }
}
