/* Authentication Pages Styles */

/* Auth Body - Purple to Black Gradient */
.auth-body {
    background: linear-gradient(135deg, #7c3aed 0%, #6b21a8 25%, #5b21b6 50%, #4c1d95 75%, #1a0b2e 100%) !important;
    background-attachment: fixed !important;
    min-height: 100vh;
    font-family: 'Vazirmatn', Arial, sans-serif;
    color: #ffffff;
    line-height: 1.7;
}

/* Higher specificity for body element */
body.auth-body {
    background: linear-gradient(135deg, #7c3aed 0%, #6b21a8 25%, #5b21b6 50%, #4c1d95 75%, #1a0b2e 100%) !important;
    background-attachment: fixed !important;
}

/* Override any theme-specific background */
html body.auth-body {
    background: linear-gradient(135deg, #7c3aed 0%, #6b21a8 25%, #5b21b6 50%, #4c1d95 75%, #1a0b2e 100%) !important;
    background-attachment: fixed !important;
}

/* Dark mode for auth pages */
[data-theme="dark"] .auth-body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #1f2937 100%);
    background-attachment: fixed;
}

/* Auth Header - Simplified Layout */
.auth-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.auth-header .logo a {
    color: #a78bfa;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    outline: none;
    white-space: nowrap;
}

.logo-link h1 {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    text-decoration: none;
}

.logo-link {
    text-decoration: none;
}

.auth-header .logo a:hover {
    color: #c4b5fd;
    text-shadow: 0 4px 12px rgba(167, 139, 250, 0.5);
    transform: translateY(-1px);
}

.auth-header .logo a:active {
    color: rgba(167, 139, 250, 0.7);
    transform: translateY(0);
    outline: none;
}

.auth-header .logo a:focus {
    outline: none;
}

.back-home {
    color: #a78bfa;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}



.back-home i {
    color: #a78bfa;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: #60a5fa;
}

.back-home:hover i {
    color: #60a5fa;
}

.back-home:active {
    color: #60a5fa;
}

.back-home:active i {
    color: #60a5fa;
}

/* Auth Main - Fixed Header Offset */
.auth-main {
    padding-top: 120px;
    padding-bottom: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 500px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Auth Card - Purple Gradient Glass Effect */
.auth-card {
    background: linear-gradient(135deg, 
        rgba(147, 51, 234, 0.15) 0%, 
        rgba(168, 85, 247, 0.12) 25%, 
        rgba(192, 132, 252, 0.1) 50%, 
        rgba(216, 180, 254, 0.08) 75%, 
        rgba(233, 213, 255, 0.05) 100%);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(147, 51, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffffff;
}

.auth-header-content {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.auth-header-content h2 i {
    margin-left: 0.5rem;
    color: #e9d5ff;
}

.auth-header-content p {
    color: #e9d5ff;
    font-size: 1rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.7;
}

/* Auth Form */
.auth-form {
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.form-group label i {
    color: #e9d5ff;
    width: 16px;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #2d3748;
    background: #ffffff;
}

.form-input::placeholder {
    color: #a0aec0;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input-group {
    position: relative;
}

.password-input-group .form-input {
    padding-left: 40px; /* فضای کافی برای آیکون نمایش رمز */
}

.password-toggle {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #a0aec0;
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.password-toggle:hover {
    color: #c4b5fd;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Custom Checkbox */
.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
}

.forgot-password {
    color: #667eea;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* Auth Buttons */
.auth-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    outline: none;
}

.auth-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.auth-btn-primary:active {
    outline: none;
    transform: translateY(0);
}

.auth-btn-primary:focus {
    outline: none;
}

.auth-btn-secondary {
    background: #95a5a6;
    color: white;
}

.auth-btn-secondary:hover {
    background: #7f8c8d;
    transform: translateY(-2px);
}

/* Social Login */
.social-login {
    text-align: center;
    margin-bottom: 2rem;
}

.social-divider {
    color: #7f8c8d;
    margin-bottom: 1rem;
    position: relative;
}

.social-divider::before,
.social-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e0e0e0;
}

.social-divider::before {
    right: 0;
}


.social-buttons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.google-btn {
    background: #db4437;
    color: white;
}

.google-btn:hover {
    background: #c23321;
    transform: translateY(-2px);
}

.facebook-btn {
    background: #4267B2;
    color: white;
}

.facebook-btn:hover {
    background: #365899;
    transform: translateY(-2px);
}

/* Auth Footer */
.auth-footer {
    text-align: center;
    color: #e9d5ff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.auth-link {
    color: #c4b5fd;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* User Types */
.user-types {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.user-types h3 {
    text-align: center;
    color: #2d3748;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.user-type-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.user-type-card {
    text-align: center;
    padding: 2rem 1rem;
    border: 2px solid #f7fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f7fafc;
}

.user-type-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    background: #fff;
}

.user-type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.user-type-card h4 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.user-type-card p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Loading Modal */
.loading-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f7fafc;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-content p {
    color: #2c3e50;
    font-weight: 500;
    margin: 0;
}

/* Dark Theme Overrides */

[data-theme="dark"] .auth-header {
    background: rgba(15, 23, 42, 0.75);
}

[data-theme="dark"] .auth-header .logo a,
[data-theme="dark"] .auth-header-content h2,
[data-theme="dark"] .auth-footer,
[data-theme="dark"] .user-type-card h4,
[data-theme="dark"] .loading-content p {
    color: var(--color-text-primary);
}

[data-theme="dark"] .auth-header-content p,
[data-theme="dark"] .form-group label,
[data-theme="dark"] .form-options,
[data-theme="dark"] .user-type-card p,
[data-theme="dark"] .social-divider,
[data-theme="dark"] .auth-footer span {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .back-home,
[data-theme="dark"] .forgot-password,
[data-theme="dark"] .auth-link,
[data-theme="dark"] .user-type-card:hover {
    color: var(--color-primary);
}

[data-theme="dark"] .auth-card,
[data-theme="dark"] .user-types,
[data-theme="dark"] .loading-content {
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 40px rgba(2, 6, 23, 0.55);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(148, 163, 184, 0.35);
    color: var(--color-text-primary);
}

[data-theme="dark"] .form-input::placeholder,
[data-theme="dark"] .form-textarea::placeholder {
    color: rgba(148, 163, 184, 0.6);
}

[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

[data-theme="dark"] .password-toggle {
    color: var(--color-text-secondary);
}

[data-theme="dark"] .password-toggle:hover {
    color: var(--color-primary);
}

[data-theme="dark"] .checkmark {
    border-color: rgba(148, 163, 184, 0.4);
}

[data-theme="dark"] .checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

[data-theme="dark"] .social-divider::before,
[data-theme="dark"] .social-divider::after,
[data-theme="dark"] .registration-steps::before {
    background: rgba(148, 163, 184, 0.22);
}

[data-theme="dark"] .user-type-card {
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(148, 163, 184, 0.25);
    box-shadow: none;
}


[data-theme="dark"] .user-type-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
}

[data-theme="dark"] .step {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.2);
    color: var(--color-text-primary);
}

[data-theme="dark"] .step-icon {
    border-color: rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
    color: var(--color-primary);
}

[data-theme="dark"] .spinner {
    border-color: rgba(148, 163, 184, 0.25);
    border-top-color: var(--color-primary);
}

[data-theme="dark"] .social-btn {
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.45);
}

[data-theme="dark"] .google-btn,
[data-theme="dark"] .facebook-btn {
    color: #ffffff;
}

/* Form Row */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Select Styling */
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
}

.form-select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Vazirmatn', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
}

.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .auth-header {
        height: 70px;
    }
    
    .header-content {
        padding: 0 1rem;
    }
    
    .logo-link h1 {
        font-size: 1rem;
    }
    
    .back-home {
        font-size: 0.8rem;
    }
    
    .auth-main {
        padding-top: 100px;
    }
    
    .auth-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .auth-card {
        padding: 2rem;
    }
    
    .user-type-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-header-content h2 {
        font-size: 1.5rem;
    }
    
    .user-types {
        padding: 1.5rem;
    }
    
    .user-type-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .auth-header {
        height: 60px;
    }
    
    .logo-link h1 {
        font-size: 0.9rem;
    }
    
    .back-home {
        font-size: 0.7rem;
    }
    
    .auth-main {
        padding-top: 90px;
        padding-bottom: 1rem;
    }
    
    .auth-card {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .user-types {
        padding: 1rem;
        border-radius: 15px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .loading-content {
        padding: 2rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
    }
}

/* Registration Page Specific Styles */

/* Registration Container */
.register-container {
    max-width: 1400px;
    grid-template-columns: 2fr 1fr;
}

.register-card {
    max-width: none;
}

/* Step Indicator */
.registration-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    position: relative;
}

.registration-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon {
    width: 50px;
    height: 50px;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #7f8c8d;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.step span {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    border-color: #667eea;
    color: #667eea;
    background: #f7fafc;
}

.step.active span {
    color: #667eea;
}

.step.completed .step-icon {
    border-color: #10b981;
    background: #10b981;
    color: white;
}

.step.completed span {
    color: #10b981;
}

/* User Type Selection */
.step-title {
    text-align: center;
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.user-type-selection {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-type-option {
    border: 3px solid #e2e8f0;
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.user-type-option:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.user-type-option.selected {
    border-color: #667eea;
    background: #f7fafc;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}


.user-type-option.selected .user-type-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
}

.user-type-content {
    flex: 1;
}

.user-type-content h4 {
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    transition: all 0.3s ease;
}

.user-type-option.selected .user-type-content h4 {
    color: #667eea;
}

.user-type-content p {
    color: #4a5568;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.user-type-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-type-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #475467;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.user-type-features li i {
    color: #10b981;
    font-size: 0.8rem;
    width: 12px;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f7fafc;
}

.section-title {
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.section-title i {
    color: #667eea;
    width: 20px;
}

/* Checkbox Group */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}



/* Field Error Styling */
.form-input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.field-error {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.field-error::before {
    content: '⚠';
    font-size: 0.9rem;
}

.field-hint {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #667085;
    line-height: 1.6;
}

/* User Types Info Panel */
.user-types-info {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
    color: #1f2937;
}

.user-types-info h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.benefit-item h4 {
    color: #2d3748;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.benefit-item p {
    color: #4a5568;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Registration */
@media (max-width: 1024px) {
    .register-container {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}


