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

/* User Type Selection */
.user-type-selection {
    width: 100%;
}

.user-type-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.user-type-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.user-type-card:hover {
    border-color: #0066FF;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 102, 255, 0.2);
}

.user-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066FF 0%, #0052CC 100%);
    border-radius: 1rem;
}

.user-type-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.user-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #1e293b;
}

.user-type-description {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.user-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.user-type-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: #475569;
}

.user-type-features li svg {
    width: 18px;
    height: 18px;
    color: #10b981;
    flex-shrink: 0;
}

/* Back button */
.btn-back {
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-back:hover {
    color: #0066FF;
}

.btn-back svg {
    width: 18px;
    height: 18px;
}

.registration-form {
    width: 100%;
}

.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: #0066FF;
}

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

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

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

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

.form-link-strong:hover {
    color: #0052CC;
    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: #E6F0FF;
    border-radius: 0.75rem;
    border: 1px solid #B3CCFF;
}

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

.benefit-item svg {
    width: 20px;
    height: 20px;
    color: #0066FF;
    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;
    }

    .user-type-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .user-type-card {
        padding: 1.5rem;
    }

    .user-type-title {
        font-size: 1.25rem;
    }
}

@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;
    }
}
