* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0b;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.1;
}

.floating-shape {
    position: absolute;
    background: #c3ff00;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    filter: blur(60px);
    opacity: 0.3;
}

.shape1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.login-container {
    background: rgba(26, 26, 30, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(195, 255, 0, 0.1);
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c3ff00, #9dd404);
}

.logo-container {
    text-align: center;
    margin-bottom: 32px;
}

.logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.welcome-text {
    text-align: center;
    margin-bottom: 32px;
}

.welcome-text h1 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.welcome-text p {
    color: #a1a1aa;
    font-size: 16px;
}

.form-group {
    margin-bottom: 24px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border: 2px solid rgba(195, 255, 0, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(26, 26, 30, 0.8);
    color: #ffffff;
}

.form-control::placeholder {
    color: #71717a;
}

.form-control:focus {
    outline: none;
    border-color: #c3ff00;
    box-shadow: 0 0 0 4px rgba(195, 255, 0, 0.1);
    background: rgba(26, 26, 30, 1);
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
    font-size: 16px;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.form-control:focus + .input-icon {
    color: #c3ff00;
}

/* Validation error durumunda input'ları kırmızı yap */
.form-control.input-validation-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-control.input-validation-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.2);
}

/* Validation error durumunda icon'u da kırmızı yap */
.input-validation-error + .input-icon {
    color: #ef4444;
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #71717a;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: auto;
}

.password-toggle:hover {
    color: #c3ff00;
    background: rgba(195, 255, 0, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #c3ff00;
}

.remember-me label {
    color: #a1a1aa;
    font-size: 14px;
    cursor: pointer;
}

.forgot-password a {
    color: #a1a1aa;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.forgot-password a:hover {
    color: #c3ff00;
    text-decoration: underline;
}

.register-link {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: #a1a1aa;
}

.register-link a {
    color: #a1a1aa;
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link a:hover {
    color: #c3ff00;
    text-decoration: underline;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    accent-color: #c3ff00;
}

.checkbox-container label {
    color: #a1a1aa;
    font-size: 14px;
    line-height: 1.4;
    cursor: pointer;
}

.checkbox-container label a {
    color: #a1a1aa;
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-container label a:hover {
    color: #c3ff00;
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #c3ff00 0%, #9dd404 100%);
    border: none;
    border-radius: 12px;
    color: #0a0a0b;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 255, 0, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 255, 0, 0.4);
}

.btn-login:active {
    transform: translateY(0);
}

.validation-error {
    display: none !important;
}

.loading {
    display: none;
    text-align: center;
    margin-top: 16px;
}

.spinner {
    border: 3px solid #71717a;
    border-top: 3px solid #c3ff00;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.footer-text {
    text-align: center;
    margin-top: 24px;
    color: #71717a;
    font-size: 12px;
}

@media (max-width: 480px) {
    .login-container {
        margin: 20px;
        padding: 32px 24px;
    }
    
    .welcome-text h1 {
        font-size: 24px;
    }
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    position: relative;
    animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.alert-success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #166534;
    border-left: 4px solid #22c55e;
}

.alert-error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

.alert-warning {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
    color: #d97706;
    border-left: 4px solid #f59e0b;
}

.alert i {
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.alert span {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.alert-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: inherit;
    cursor: pointer;
    padding: 6px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 12px;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.alert-close:active {
    transform: scale(0.95);
}

.alert-close i {
    font-size: 12px;
    margin: 0;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
}

/* Alert hover effects */
.alert:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Alert pulse animation for important messages */
.alert-warning {
    animation: slideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: rgba(26, 26, 30, 0.95);
    backdrop-filter: blur(20px);
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 95%;
    max-width: 450px;
    min-width: 320px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideInModal 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid rgba(195, 255, 0, 0.1);
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(195, 255, 0, 0.3) transparent;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 16px 24px;
    border-bottom: 1px solid rgba(195, 255, 0, 0.1);
    position: sticky;
    top: 0;
    background: rgba(26, 26, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.modal-close {
    background: rgba(195, 255, 0, 0.1);
    border: none;
    color: #a1a1aa;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-close:hover {
    background: rgba(195, 255, 0, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.modal-body {
    padding: 20px 24px 24px 24px;
}

.modal-body p {
    color: #a1a1aa;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 14px;
}

.modal-alert {
    margin-bottom: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.modal-alert.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    color: #166534;
    border-left: 4px solid #22c55e;
}

.modal-alert.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #dc2626;
    border-left: 4px solid #ef4444;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-secondary {
    padding: 12px 20px;
    background: rgba(195, 255, 0, 0.1);
    border: none;
    border-radius: 12px;
    color: #a1a1aa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(195, 255, 0, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-primary {
    padding: 12px 20px;
    background: linear-gradient(135deg, #c3ff00 0%, #9dd404 100%);
    border: none;
    border-radius: 12px;
    color: #0a0a0b;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(195, 255, 0, 0.3);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(195, 255, 0, 0.4);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Register Modal özel stilleri */
#registerModal .modal-content {
    max-width: 480px;
}

#registerModal .form-group {
    margin-bottom: 16px;
}

#registerModal .form-group label {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
}

#registerModal .input-container {
    position: relative;
    display: flex;
    align-items: center;
}

#registerModal .form-control {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 2px solid rgba(195, 255, 0, 0.1);
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(26, 26, 30, 0.8);
    color: #ffffff;
    min-height: 44px;
}

#registerModal .form-control:focus {
    outline: none;
    border-color: #c3ff00;
    box-shadow: 0 0 0 3px rgba(195, 255, 0, 0.1);
    background: rgba(26, 26, 30, 1);
}

#registerModal .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #71717a;
    font-size: 14px;
    transition: color 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

#registerModal .form-control:focus + .input-icon {
    color: #c3ff00;
}

#registerModal .password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #71717a;
    cursor: pointer;
    font-size: 14px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    z-index: 10;
    pointer-events: auto;
}

#registerModal .password-toggle:hover {
    color: #c3ff00;
    background: rgba(195, 255, 0, 0.1);
}

#registerModal .checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

#registerModal .checkbox-container input[type="checkbox"] {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    accent-color: #c3ff00;
    flex-shrink: 0;
}

#registerModal .checkbox-container label {
    color: #a1a1aa;
    font-size: 12px;
    line-height: 1.4;
    cursor: pointer;
    margin: 0;
}

#registerModal .checkbox-container label a {
    color: #a1a1aa;
    text-decoration: underline;
    font-weight: 600;
}

#registerModal .checkbox-container label a:hover {
    color: #c3ff00;
    text-decoration: underline;
}

/* Responsive tasarım iyileştirmeleri */
@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 1% auto;
        max-width: none;
        min-width: 280px;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-header {
        padding: 16px 20px 12px 20px;
    }
    
    .modal-header h2 {
        font-size: 16px;
    }
    
    .modal-body {
        padding: 16px 20px 20px 20px;
    }
    
    .modal-body p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    #registerModal .form-group {
        margin-bottom: 14px;
    }
    
    #registerModal .form-group label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    #registerModal .form-control {
        padding: 10px 14px 10px 40px;
        font-size: 13px;
        min-height: 40px;
    }
    
    #registerModal .input-icon {
        left: 12px;
        font-size: 13px;
    }
    
    #registerModal .password-toggle {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    
    .modal-actions {
        gap: 10px;
        margin-top: 16px;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
        min-height: 40px;
    }
    
    .checkbox-container label {
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    .modal-content {
        width: 99%;
        margin: 0.5% auto;
        border-radius: 16px;
        max-height: 98vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-header {
        padding: 14px 16px 10px 16px;
    }
    
    .modal-header h2 {
        font-size: 15px;
    }
    
    .modal-body {
        padding: 14px 16px 16px 16px;
    }
    
    #registerModal .form-control {
        padding: 8px 12px 8px 36px;
        font-size: 12px;
        min-height: 36px;
    }
    
    #registerModal .input-icon {
        left: 10px;
        font-size: 12px;
    }
    
    #registerModal .password-toggle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .btn-secondary,
    .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 36px;
    }
}

/* Yüksek DPI ekranlar için iyileştirmeler */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .modal-content {
        border-width: 0.5px;
    }
    
    .form-control {
        border-width: 1px;
    }
    
    .btn-secondary,
    .btn-primary {
        border-width: 1px;
    }
}

/* Düşük çözünürlük ekranlar için özel ayarlar */
@media (max-height: 600px) {
    .modal-content {
        margin: 1% auto;
        max-height: 98vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-body {
        padding: 12px 20px 16px 20px;
    }
    
    #registerModal .form-group {
        margin-bottom: 12px;
    }
    
    .modal-actions {
        margin-top: 12px;
    }
}

/* Landscape modunda mobil cihazlar için */
@media (max-width: 768px) and (orientation: landscape) {
    .modal-content {
        margin: 1% auto;
        max-height: 95vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .modal-header {
        padding: 12px 20px 8px 20px;
    }
    
    .modal-body {
        padding: 12px 20px 16px 20px;
    }
    
    #registerModal .form-group {
        margin-bottom: 10px;
    }
    
    #registerModal .form-control {
        min-height: 36px;
        padding: 8px 14px 8px 40px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInModal {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modal scroll stilleri */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(195, 255, 0, 0.3);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(195, 255, 0, 0.5);
}

/* Mobil cihazlarda modal scroll iyileştirmeleri */
@media (max-width: 768px) {
    .modal-content {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobil cihazlarda scroll momentum'u */
    .modal-content {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
}

/* Mobil cihazlarda modal iyileştirmeleri */
@media (max-width: 480px) {
    .modal {
        padding: 10px;
    }
    
    .modal-content {
        margin: 0 auto;
        max-height: calc(100vh - 20px);
        max-height: calc(var(--vh, 1vh) * 100 - 20px);
    }
}

@media (max-width: 360px) {
    .modal {
        padding: 5px;
    }
    
    .modal-content {
        margin: 0 auto;
        max-height: calc(100vh - 10px);
        max-height: calc(var(--vh, 1vh) * 100 - 10px);
    }
}

/* Terms ve Privacy Modal Styles */
.terms-modal,
.privacy-modal {
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.terms-content,
.privacy-content {
    padding: 24px;
    line-height: 1.6;
}

.terms-section,
.privacy-section {
    color: #333;
}

.terms-section h3,
.privacy-section h3 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 700;
    margin: 24px 0 12px 0;
    border-bottom: 2px solid #666;
    padding-bottom: 8px;
}

.terms-section h3:first-child,
.privacy-section h3:first-child {
    margin-top: 0;
}

.terms-section p,
.privacy-section p {
    margin-bottom: 16px;
    color: #555;
}

.terms-section ul,
.privacy-section ul {
    margin: 12px 0 16px 20px;
    color: #555;
}

.terms-section li,
.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.terms-section strong,
.privacy-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Scrollbar styling */
.terms-modal::-webkit-scrollbar,
.privacy-modal::-webkit-scrollbar {
    width: 8px;
}

.terms-modal::-webkit-scrollbar-track,
.privacy-modal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.terms-modal::-webkit-scrollbar-thumb,
.privacy-modal::-webkit-scrollbar-thumb {
    background: #666;
    border-radius: 4px;
}

.terms-modal::-webkit-scrollbar-thumb:hover,
.privacy-modal::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Verification Page Styles */
.verification-info {
    margin: 24px 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-card i {
    font-size: 48px;
    color: #DDFD2D;
    margin-bottom: 16px;
}

.info-card h3 {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.info-card strong {
    color: #333;
    font-weight: 600;
}

.verification-help {
    margin-top: 24px;
    text-align: center;
}

.verification-help p {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: #333;
    transform: translateX(-2px);
}

.help-link i {
    font-size: 12px;
}

/* Reset Password Styles */
.reset-info {
    margin-bottom: 30px;
}

.reset-help {
    text-align: center;
    margin-top: 20px;
}

.reset-help p {
    color: #666;
    margin-bottom: 10px;
}

.forgot-password-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #666;
    text-decoration: underline;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-bottom: 15px;
    font-size: 14px;
}

.forgot-password-btn:hover {
    color: #333;
} 