/* ============================================================
   assets/css/custom/login.css
   Login səhifəsinə aid xüsusi stillər
============================================================ */

/* ------------------------------------------------------------
   OTP Input
------------------------------------------------------------ */
.otp-input {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 12px;
    padding: 12px 20px;
    text-align: center;
}

.otp-input::placeholder {
    letter-spacing: 8px;
    font-size: 20px;
    opacity: 0.4;
}

/* ------------------------------------------------------------
   Spinner düyməsi
------------------------------------------------------------ */
#btn-login,
#btn-otp {
    position: relative;
    transition: opacity 0.2s ease;
}

#btn-login:disabled,
#btn-otp:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ------------------------------------------------------------
   Xəta bildiriş bloku
------------------------------------------------------------ */
#login-alert,
#otp-alert {
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

/* ------------------------------------------------------------
   Cəhd sayacı
------------------------------------------------------------ */
#attempts-info,
#otp-attempts-info {
    font-size: 13px;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#attempts-info svg,
#otp-attempts-info svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ------------------------------------------------------------
   Yenidən göndər düyməsi
------------------------------------------------------------ */
#btn-resend {
    font-size: 13px;
    text-decoration: none;
    color: var(--theme-default);
}

#btn-resend:disabled {
    color: #aaa;
    cursor: not-allowed;
}

#resend-countdown {
    font-size: 12px;
    color: #aaa;
    margin-left: 4px;
}

/* ------------------------------------------------------------
   Geri düyməsi
------------------------------------------------------------ */
#btn-back {
    font-size: 13px;
    text-decoration: none;
}

#btn-back:hover {
    color: var(--theme-default) !important;
}

/* ------------------------------------------------------------
   Form keçidi animasiyası
------------------------------------------------------------ */
#form-login,
#form-otp {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------------------------------------
   Blok geri sayım
------------------------------------------------------------ */
.block-countdown {
    font-size: 32px;
    font-weight: 700;
    color: var(--theme-default);
    text-align: center;
    margin: 12px 0;
}

.block-message {
    font-size: 14px;
    text-align: center;
    color: #666;
}