/* Login Page Styles */

/* Navigation Styles for Login Page */
.header .nav-links a {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border: none !important;
    border-radius: 12px;
    padding: 1rem 3rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-height: 50px;
    min-width: 250px;
    white-space: nowrap;
}

.header .nav-links a:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%) !important;
    color: white !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.header .nav-links a:active {
    transform: translateY(0);
    background: linear-gradient(135deg, #4c51bf 0%, #553c9a 100%) !important;
}

.header .nav-links li:first-child a {
    border-left: none !important;
}

/* Стили для стрелки возврата */
.header .nav-links a[href="index.html"]::before {
    content: "←";
    margin-right: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
}

/* Адаптивные стили для кнопки навигации */
@media (max-width: 768px) {
    .header .nav-links a {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        min-height: 45px;
        min-width: 200px;
    }
    
    .header .nav-links a[href="index.html"]::before {
        margin-right: 0.4rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header .nav-links a {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
        min-width: 180px;
    }
}

/* Modal Styles for Registration and Forgot Password */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.login-modal .modal-content {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.login-modal .modal-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
}

.login-modal .modal-header h3 {
    margin: 0;
    color: #333;
    font-size: 1.25rem;
}

.login-modal .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-modal .close-btn:hover {
    color: #333;
}

.login-modal .modal-body {
    padding: 0 1.5rem 1.5rem;
}

.login-modal .modal-body p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.login-modal form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-modal input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.login-modal input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.login-modal .login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-modal .login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}
.login-main {
    min-height: calc(100vh - 120px);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

/* Login Card */
.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #28a745, #ffc107, #dc3545);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header .government-seal {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #0066cc, #28a745);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.login-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.admin-lock-icon {
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 0.3rem;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.admin-lock-icon:hover {
    opacity: 1;
    background: rgba(220, 53, 69, 0.2);
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.login-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Login Tabs */
.login-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 0.5rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn.active {
    background: white;
    color: #0066cc;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.tab-btn:hover:not(.active) {
    background: rgba(255,255,255,0.5);
    color: #0066cc;
}

.tab-icon {
    font-size: 1.2rem;
}

/* Login Forms */
.login-form {
    display: none;
}

.login-form.active {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

/* Password Input */
.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.password-toggle:hover {
    background: #f8f9fa;
}

/* Checkbox */
.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: #1a1a1a;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #0066cc;
    border-color: #0066cc;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Login Button */
.login-btn {
    width: 100%;
    background: linear-gradient(135deg, #0066cc, #0052a3);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 8px;
    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;
    margin-bottom: 2rem;
    min-height: 56px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}

.login-btn.admin {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.login-btn.admin:hover {
    box-shadow: 0 8px 20px rgba(220,53,69,0.3);
}

.btn-icon {
    font-size: 1.2rem;
}

/* Demo Credentials */
.demo-credentials {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.demo-credentials h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.demo-section {
    margin-bottom: 1rem;
}

.demo-section:last-child {
    margin-bottom: 0;
}

.demo-section h4 {
    color: #0066cc;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.demo-section p {
    color: #666;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}

/* Login Links */
.login-links {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.link-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    color: #0066cc;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
}

.link-btn:hover {
    background: #e9ecef;
    transform: translateY(-1px);
}

.link-icon {
    font-size: 1rem;
}

/* Login Footer */
.login-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    color: white;
    margin-top: 4rem;
    padding: 3rem 0 2rem;
}

.login-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-security {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

/* Premium Security Notice in Footer */
.footer-security .security-notice.premium {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
    padding: 1.4rem;
    max-width: 700px;
    border: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.notice-icon-container {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 10px;
    padding: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.notice-icon {
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
}

.security-title-section {
    flex: 1;
}

.footer-security .notice-content h3 {
    color: white;
    font-size: 1.1rem;
    margin: 0 0 0.3rem 0;
    font-weight: 600;
}

.security-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4ade80;
    font-weight: 500;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px rgba(74, 222, 128, 0.5);
}

.status-dot.active {
    animation: pulse-dot 2s infinite;
}

.footer-security .notice-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(3px);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.feature .feature-icon {
    font-size: 1rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 5px;
    flex-shrink: 0;
    color: white;
}

.feature span {
    color: white;
    font-weight: 500;
    font-size: 0.8rem;
}

.security-main-content {
    /* Основной контент слева */
}

.security-certification {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    min-width: 140px;
    margin-right: -0.4rem;
    position: relative;
    top: -0.2rem;
}

.cert-badge {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.15) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
}

.cert-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, #4CAF50 0%, #388E3C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.cert-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

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

.cert-title {
    color: #4CAF50;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.cert-number {
    color: rgba(255,255,255,0.7);
    font-size: 0.65rem;
    font-family: monospace;
    font-weight: 500;
}



/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    flex: 1;
}

.footer-legal p {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.1);
}

.badge-icon {
    font-size: 1rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loading-overlay.active {
    display: flex;
}

.loading-spinner {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0066cc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-spinner p {
    color: #666;
    font-weight: 500;
}

/* Notifications */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
}

.notification {
    background: white;
    border-left: 4px solid #0066cc;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 1rem;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.warning {
    border-left-color: #ffc107;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .login-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .footer-security .security-notice.premium {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 100%;
        padding: 1.2rem;
    }
    
    .security-header {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
        margin-bottom: 0.8rem;
    }
    
    .security-certification {
        min-width: auto;
        align-self: center;
        align-items: center;
        margin-right: 0;
        position: static;
        top: auto;
    }
    
    .cert-badge {
        max-width: 160px;
        padding: 0.7rem;
    }
    
    .feature {
        padding: 0.4rem 0.6rem;
    }
}

/* Ban notification styles */
.ban-notification-content {
    max-width: 500px;
    width: 90%;
}

.ban-header {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 12px 12px 0 0;
    padding: 20px;
    text-align: center;
    position: relative;
}

.ban-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
}

.ban-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.ban-info {
    padding: 25px;
}

.ban-message {
    margin-bottom: 25px;
}

.ban-main-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.6;
}

.ban-details {
    background: #f8fafc;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #dc2626;
}

.ban-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ban-detail-item:last-child {
    margin-bottom: 0;
}

.detail-label {
    font-weight: 600;
    color: #6b7280;
    font-size: 0.9rem;
}

.detail-value {
    font-weight: 500;
    color: #374151;
    text-align: right;
}

.detail-value.permanent {
    color: #dc2626;
    font-weight: 600;
}

.ban-contact-methods {
    background: #f0f9ff;
    border-radius: 8px;
    padding: 20px;
    border-left: 4px solid #3b82f6;
}

.ban-contact-methods h4 {
    margin: 0 0 15px 0;
    color: #1e40af;
    font-size: 1rem;
    font-weight: 600;
}

.ban-contact-methods ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ban-contact-methods li {
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.95rem;
}

.ban-contact-methods li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .login-container {
        padding: 0 1rem;
    }
    
    .login-card {
        padding: 2rem;
    }
    
    .security-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .login-links {
        flex-direction: column;
    }
    
    .login-tabs {
        flex-direction: column;
    }
    
    .tab-btn {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 1.5rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-btn {
        padding: 1.5rem 1.5rem;
        min-height: 60px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.2;
    }
    
    .security-notice.premium {
        padding: 2rem;
        max-width: 100%;
    }
    
    .security-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    

}

/* Registration Info Modal Styles */
.registration-info-modal .modal-content {
    max-width: 500px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
}

.registration-info-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem;
    margin-bottom: 0;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.registration-info-modal .header-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.registration-info-modal .modal-header h3 {
    color: white;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.registration-info-modal .close-btn {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.registration-info-modal .close-btn:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.registration-info-modal .modal-body {
    padding: 2rem;
}

.info-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.info-section:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.info-section h4 {
    margin: 0 0 0.75rem 0;
    color: #2d3748;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.info-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

.divider span {
    background: #f8fafc;
    padding: 0 1rem;
    color: #718096;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e2e8f0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.contact-value {
    font-size: 0.95rem;
    color: #2d3748;
    font-weight: 600;
    font-family: monospace;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.info-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
}

.info-btn.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.info-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-btn.secondary {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.info-btn.secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.btn-icon {
    font-size: 1rem;
}

/* Password Recovery Styles */
.password-recovery-info {
    text-align: center;
    padding: 20px;
}

.recovery-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #6c63ff;
}

.password-recovery-info h4 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.password-recovery-info p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.contact-link-container {
    margin: 25px 0;
}

.manager-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6c63ff 0%, #4834d4 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.manager-contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, #5a52ff 0%, #3d2db4 100%);
}

.manager-contact-link .link-icon {
    font-size: 1.2rem;
}

.recovery-note {
    background: #f8f9ff;
    border: 1px solid #e1e5ff;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.recovery-note p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    font-style: italic;
}

/* Responsive design for registration info modal */
@media (max-width: 576px) {
    .registration-info-modal .modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .registration-info-modal .modal-body {
        padding: 1.5rem;
    }
    
    .info-section {
        padding: 1.25rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .contact-details {
        text-align: left;
    }
}
