/* ============================================
   AUTH CARD - ORTALANMIŞ TAB TASARIMI
   Giriş Yap / Kayıt Ol Sayfası
   TTI YAZILIM - 2025
   ============================================ */

.auth-card-modern {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 60px;
}

.auth-tabs-wrap {
    display: flex;
    background: #f5f5f7;
    border: 2px solid #e8e8ed;
    border-radius: 12px;
    padding: 4px;
    margin: 20px 24px;
    position: relative;
    gap: 4px;
}

.auth-tab {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
    z-index: 1;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-tab:hover {
    color: var(--main);
}

.auth-tab.active {
    color: var(--primary);
    background: var(--white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12),
    0 1px 3px rgba(0, 0, 0, 0.08);
    animation: tabActivate 0.3s ease;
}

@keyframes tabActivate {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.auth-tab span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.auth-tab i {
    font-size: 18px;
    line-height: 1;
}

.tab-text {
    line-height: 1;
}

/* ============================================
   TAB CONTENT
   ============================================ */

.auth-tab-content {
    padding: 32px;
}

.tab-pane {
    display: none;
    animation: fadeInContent 0.4s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MESSAGE ALERTS
   ============================================ */

.auth-message {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-message.success {
    background: var(--success-alpha-10);
    color: var(--success);
    border: 1px solid var(--success-alpha-20);
}

.auth-message.error {
    background: var(--critical-alpha-10);
    color: var(--critical);
    border: 1px solid var(--critical-alpha-20);
}

.auth-message.warning {
    background: var(--warning-alpha-10);
    color: var(--warning);
    border: 1px solid var(--warning-alpha-20);
}

.auth-message i {
    font-size: 18px;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-fieldset {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-fieldset label {
    font-size: 13px;
    font-weight: 600;
    color: var(--main);
}

.form-fieldset input {
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
    color: var(--main);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-fieldset input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-alpha-10);
}

.form-fieldset input.error {
    border-color: var(--critical);
    background: var(--critical-alpha-5);
}

.field-error {
    display: none;
    font-size: 12px;
    color: var(--critical);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================
   PASSWORD FIELD
   ============================================ */

.password-fieldset {
    position: relative;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 48px;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    background: none;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 18px;
}

.password-toggle-btn:hover {
    color: var(--primary);
    background: var(--primary-alpha-5);
}

.password-toggle-btn i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.password-toggle-btn:active i {
    transform: scale(0.9);
}

.password-toggle-btn .icon-eye-hide-line,
.password-toggle-btn .icon-eye-line {
    display: block;
    font-size: 18px;
    line-height: 1;
}

/* ============================================
   PASSWORD STRENGTH
   ============================================ */

.password-strength {
    margin-top: 8px;
}

.strength-bar {
    height: 4px;
    background: var(--line);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.4s ease;
    border-radius: 2px;
}

.strength-text {
    font-size: 11px;
    font-weight: 600;
}

/* ============================================
   FORM FOOTER
   ============================================ */

.form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.link-forgot {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-forgot:hover {
    color: var(--main);
    text-decoration: underline;
}

/* ============================================
   AGREEMENTS
   ============================================ */

.form-agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.agreement-label {
    font-size: 13px !important;
    color: var(--secondary) !important;
    line-height: 1.5 !important;
    font-weight: 400 !important;
}

.agreement-label a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.agreement-label a:hover {
    text-decoration: underline;
}

/* ============================================
   LOADING STATE
   ============================================ */

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   AVANTAJLAR BÖLÜMÜ
   ============================================ */

.auth-benefits-section {
    padding: 60px 0 0;
    border-top: 2px solid var(--line);
}

.benefits-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 40px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--white);
    box-shadow: 0 4px 16px var(--primary-alpha-20);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 8px 24px var(--primary-alpha-30);
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 28px;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--main);
    margin: 0 0 8px 0;
}

.benefit-item p {
    font-size: 13px;
    color: var(--secondary);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 991px) {
    .auth-tab-content {
        padding: 28px;
    }

    .auth-benefits-section {
        padding: 40px 0 0;
    }

    .benefits-title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .benefit-item h4 {
        font-size: 15px;
    }

    .benefit-item p {
        font-size: 12px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL
   ============================================ */

@media (max-width: 767px) {
    .auth-card-modern {
        margin-bottom: 40px;
    }

    .auth-tabs-wrap {
        display: flex;
        flex-direction: row;
    }

    .auth-tab {
        padding: 18px 16px;
        font-size: 14px;
        font-weight: 700;
    }

    .auth-tabs-wrap::after {
        display: block;
    }

    .auth-tab.active {
        border-bottom-color: var(--line);
        border-left-color: var(--primary);
    }

    .auth-tab-content {
        padding: 24px 20px;
    }

    .auth-form {
        gap: 18px;
    }

    .form-fieldset input {
        height: 46px;
        font-size: 15px;
    }

    .form-footer-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-benefits-section {
        padding: 30px 0 0;
    }

    .benefits-title {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .benefit-item {
        padding: 20px 12px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL
   ============================================ */

@media (max-width: 575px) {
    .auth-tab {
        padding: 16px 12px;
        font-size: 13px;
    }

    .auth-tab i {
        display: none;
    }

    .auth-tab-content {
        padding: 20px 16px;
    }

    .auth-message {
        padding: 12px 14px;
        font-size: 13px;
    }

    .form-fieldset label {
        font-size: 12px;
    }

    .form-fieldset input {
        height: 44px;
        padding: 0 14px;
        font-size: 14px;
    }

    .password-toggle-btn {
        width: 32px;
        height: 32px;
    }

    .agreement-label {
        font-size: 12px !important;
    }

    .benefits-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .benefit-item h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .benefit-item p {
        font-size: 12px;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.auth-tab:focus-visible,
.password-toggle-btn:focus-visible,
.link-forgot:focus-visible,
.agreement-label a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .auth-tabs-wrap,
    .auth-message,
    .tf-btn,
    .password-toggle-btn,
    .link-forgot,
    .auth-benefits-section {
        display: none !important;
    }

    .auth-card-modern {
        box-shadow: none;
        border: 1px solid #ddd;
    }

    .tab-pane {
        display: block !important;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .auth-tab,
    .form-fieldset input,
    .password-toggle-btn,
    .benefit-item,
    .benefit-icon,
    .tab-pane {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */

@media (prefers-contrast: high) {
    .auth-card-modern {
        border-width: 2px;
    }

    .form-fieldset input {
        border-width: 2px;
    }

    .auth-tab.active {
        border-bottom-width: 4px;
    }
}

/* ============================================
   ŞİFREMİ UNUTTUM & ŞİFRE SIFIRLA SAYFALARI
   Forgot Password & Reset Password Pages
   TTI YAZILIM - 2025
   ============================================ */

/* ============================================
   FORGOT & RESET CARD - ORTAK YAPILAR
   ============================================ */

.forgot-card,
.reset-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    margin-bottom: 24px;
}

.forgot-card:hover,
.reset-card:hover {
    box-shadow: var(--card-hover);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.forgot-header,
.reset-header {
    text-align: center;
    margin-bottom: 32px;
}

.forgot-icon,
.reset-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.forgot-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.reset-icon.success {
    background: linear-gradient(135deg, var(--success) 0%, var(--success-dark) 100%);
}

.reset-icon.error {
    background: linear-gradient(135deg, var(--critical) 0%, #dc2626 100%);
}

.forgot-header h4,
.reset-header h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 12px;
}

.forgot-header p,
.reset-header p {
    font-size: 15px;
    color: var(--secondary-2);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   HESAP BULUNAMADI ALERT - INPUT ÜSTÜNDE
   ============================================ */

.account-not-found-alert {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid var(--critical);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.15);
}

.account-not-found-alert .alert-icon {
    width: 40px;
    height: 40px;
    background: var(--critical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    flex-shrink: 0;
}

.account-not-found-alert .alert-content {
    flex: 1;
}

.account-not-found-alert .alert-content strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--critical);
    margin-bottom: 6px;
}

.account-not-found-alert .alert-content p {
    font-size: 14px;
    color: #991b1b;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.account-not-found-alert .alert-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--critical);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    padding: 6px 12px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 6px;
}

.account-not-found-alert .alert-link:hover {
    background: rgba(239, 68, 68, 0.2);
    gap: 10px;
}

.account-not-found-alert .alert-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    border-radius: 6px;
    color: var(--critical);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.account-not-found-alert .alert-close:hover {
    background: rgba(239, 68, 68, 0.2);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.forgot-form,
.reset-form {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--main);
    margin-bottom: 10px;
}

/* ============================================
   INPUT WRAPPER WITH ICON
   ============================================ */

.input-wrap {
    position: relative;
}

.input-wrap i:first-child {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--secondary-2);
    z-index: 1;
    pointer-events: none;
}

.input-wrap input {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 48px;
    border: 2px solid var(--line);
    border-radius: 10px;
    font-size: 15px;
    color: var(--main);
    background: var(--white);
    transition: var(--transition);
}

.input-wrap input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-alpha-10);
}

.input-wrap input.error {
    border-color: var(--critical);
}

/* ============================================
   PASSWORD FIELD - GİRİŞ SAYFASI STİLİ
   ============================================ */

.password-wrap {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--secondary-2);
    font-size: 20px;
    cursor: pointer;
    padding: 6px;
    transition: var(--transition);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.password-toggle-btn:hover {
    color: var(--primary);
    background: var(--surface);
}

/* ============================================
   PASSWORD STRENGTH
   ============================================ */

.password-strength {
    margin-top: 12px;
    padding: 12px;
    background: var(--surface);
    border-radius: 8px;
}

.strength-bar {
    height: 6px;
    background: var(--line);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill {
    height: 100%;
    width: 0;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 13px;
    font-weight: 600;
}

/* ============================================
   PASSWORD TIPS
   ============================================ */

.password-tips {
    background: var(--primary-alpha-5);
    border: 1px solid var(--primary-alpha-15);
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.password-tips h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 12px;
}

.password-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-tips li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.password-tips li:last-child {
    margin-bottom: 0;
}

.password-tips li i {
    color: var(--success);
    font-size: 14px;
}

/* ============================================
   FIELD ERROR
   ============================================ */

.field-error {
    display: none;
    color: var(--critical);
    font-size: 13px;
    margin-top: 8px;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */

.tti-btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px var(--primary-alpha-20);
    text-decoration: none;
}

.tti-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--primary-alpha-30);
    color: var(--white);
}

.tti-btn-submit:active {
    transform: translateY(0);
}

.tti-btn-submit.btn-loading .text {
    opacity: 0;
}

.tti-btn-submit.btn-loading i {
    display: none;
}

.tti-btn-submit.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   BACK LINK
   ============================================ */

.back-link {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    margin-top: 20px;
}

.back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

.back-link a:hover {
    color: var(--primary);
    gap: 12px;
}

/* ============================================
   INFO CARD
   ============================================ */

.info-card {
    margin-top: 24px;
    background: var(--surface);
    border: 2px solid var(--line);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.info-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--secondary-2);
    margin-bottom: 12px;
    line-height: 1.6;
}

.link-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary) !important;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.link-primary:hover {
    color: var(--primary-dark) !important;
    gap: 10px;
}

/* ============================================
   ERROR STATE (Token Geçersiz)
   ============================================ */

.error-state {
    border: 2px solid var(--critical-alpha-20);
}

.error-info {
    background: var(--surface);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
}

.error-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--main);
    margin-bottom: 12px;
}

.error-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.error-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.error-info li:last-child {
    margin-bottom: 0;
}

.error-info li i {
    color: var(--primary);
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.forgot-card,
.reset-card {
    animation: fadeIn 0.4s ease;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 991px) {
    .forgot-card,
    .reset-card {
        padding: 32px;
    }

    .forgot-icon,
    .reset-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
        margin-bottom: 18px;
    }

    .forgot-header h4,
    .reset-header h4 {
        font-size: 22px;
    }

    .forgot-header p,
    .reset-header p {
        font-size: 14px;
    }
}

/* ============================================
   RESPONSIVE - MOBİL
   ============================================ */

@media (max-width: 767px) {
    .forgot-card,
    .reset-card {
        padding: 28px 20px;
    }

    .forgot-icon,
    .reset-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
        margin-bottom: 16px;
    }

    .forgot-header h4,
    .reset-header h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .forgot-header p,
    .reset-header p {
        font-size: 13px;
    }

    .account-not-found-alert {
        padding: 16px;
        gap: 12px;
    }

    .account-not-found-alert .alert-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .account-not-found-alert .alert-content strong {
        font-size: 15px;
    }

    .account-not-found-alert .alert-content p {
        font-size: 13px;
    }

    .input-wrap input {
        height: 48px;
        padding: 0 44px;
        font-size: 14px;
    }

    .input-wrap i:first-child {
        font-size: 16px;
        left: 14px !important;
    }

    .password-toggle-btn {
        right: 14px;
        font-size: 18px;
        width: 30px;
        height: 30px;
    }

    .password-strength {
        padding: 10px;
    }

    .strength-text {
        font-size: 12px;
    }

    .password-tips {
        padding: 14px 16px;
    }

    .password-tips h5 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .password-tips li {
        font-size: 12px;
    }

    .tti-btn-submit {
        padding: 12px 20px;
        font-size: 14px;
    }

    .info-card {
        padding: 20px;
        gap: 14px;
    }

    .info-icon {
        font-size: 24px;
    }

    .info-content h5 {
        font-size: 15px;
    }

    .info-content p {
        font-size: 13px;
    }

    .error-info {
        padding: 16px;
    }

    .error-info h5 {
        font-size: 14px;
    }

    .error-info li {
        font-size: 13px;
    }
}

/* ============================================
   RESPONSIVE - KÜÇÜK MOBİL
   ============================================ */

@media (max-width: 575px) {
    .forgot-card,
    .reset-card {
        padding: 24px 16px;
    }

    .forgot-icon,
    .reset-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 14px;
    }

    .forgot-header h4,
    .reset-header h4 {
        font-size: 18px;
    }

    .account-not-found-alert {
        padding: 14px;
    }

    .account-not-found-alert .alert-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .account-not-found-alert .alert-content strong {
        font-size: 14px;
    }

    .account-not-found-alert .alert-content p {
        font-size: 12px;
    }

    .account-not-found-alert .alert-link {
        font-size: 13px;
        padding: 5px 10px;
    }

    .input-wrap input {
        height: 46px;
        padding: 0 42px;
    }

    .password-tips h5 {
        font-size: 12px;
    }

    .password-tips li {
        font-size: 11px;
        gap: 8px;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .info-icon {
        font-size: 32px;
        margin: 0 auto;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

.password-toggle-btn:focus-visible,
.tti-btn-submit:focus-visible,
.link-primary:focus-visible,
.back-link a:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    .password-toggle-btn,
    .tti-btn-submit,
    .back-link,
    .info-card {
        display: none !important;
    }

    .forgot-card,
    .reset-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    .forgot-card,
    .reset-card,
    .tti-btn-submit,
    .password-toggle-btn,
    .link-primary,
    .back-link a,
    .input-wrap input,
    .strength-fill {
        animation: none !important;
        transition: none !important;
    }
}

/* ============================================
   HIGH CONTRAST MODE
   ============================================ */

@media (prefers-contrast: high) {
    .forgot-card,
    .reset-card {
        border-width: 2px;
    }

    .input-wrap input {
        border-width: 2px;
    }

    .account-not-found-alert {
        border-width: 3px;
    }
}