/* Authentication Page Styles */
.auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-navbar {
    width: 100%;
    max-width: none;
    position: fixed;
    top: 0;
    background-color: #F4F0E6;
    z-index: 100; /* Make sure it stays over content */
}

.auth-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;  /* Pushes content below the fixed navbar */
    padding-bottom: 100px; /* Adds the requested spacing to the bottom */
}

.auth-layout {
    display: flex;
    gap: 32px;
    max-width: 1100px;
    width: 100%;
}

.auth-panel {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.auth-panel-dark {
    background-color: var(--dark-green);
    color: white;
}

.auth-panel-light {
    background-color: #fbfbf6; /* Slightly off-white cream */
    color: var(--text-main);
}

.auth-pre-heading {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-family: inherit;
}

.auth-pre-heading-primary {
    color: var(--primary-hover);
}

.auth-heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.auth-heading-light {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.25rem;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-main);
}

.auth-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 32px;
}

.auth-features {
    list-style-type: disc;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-control {
    padding: 14px 16px;
    border: 1px solid #e2e4df;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background-color: white;
    color: var(--text-main);
    transition: border-color 0.2s;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-color);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2353645e' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
    cursor: pointer;
}

.btn-full {
    width: 100%;
    margin-top: 16px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
}

.btn-gradient {
    background: linear-gradient(135deg, #189886, #12abae);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-button);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #158b7a, #109a9d);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .auth-layout {
        flex-direction: column;
    }
    .auth-page {
        height: auto;
        overflow-y: auto;
    }
    .auth-panel {
        padding: 40px 32px;
    }
    .auth-container {
        padding-top: 32px;
        padding-bottom: 64px;
    }
}
