/* Auth Pages Styles */
.auth-section {
    padding: 5rem 0;
    background: #f8fafc;
    min-height: calc(100vh - 400px);
}

.auth-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

.auth-content {
    width: 100%;
}

.auth-header {
    margin-bottom: 2rem;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 0;
}

.auth-form {
    margin-bottom: 2rem;
}

.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6b35;
}

.form-check-label {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    cursor: pointer;
}

.form-link {
    color: #ff6b35;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-link:hover {
    color: #e05528;
    text-decoration: underline;
}

.form-link-strong {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.form-link-strong:hover {
    color: #e05528;
    text-decoration: underline;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.form-footer p {
    color: #64748b;
    margin: 0;
}

.auth-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: #fff7f3;
    border-radius: 0.75rem;
    border: 1px solid #ffe5d9;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1e293b;
    font-size: 0.95rem;
}

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: #ff6b35;
    flex-shrink: 0;
}

.auth-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-section {
        padding: 3rem 0;
    }

    .auth-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .auth-image {
        display: none;
    }

    .auth-title {
        font-size: 1.75rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .auth-section {
        padding: 2rem 0;
    }

    .auth-container {
        padding: 1.75rem 1.25rem;
        border-radius: 1rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-description {
        font-size: 1rem;
    }

    .auth-benefits {
        padding: 1.25rem;
    }
}
