/* =========================
   AUTH PAGE (NEUTRAL PRO)
========================= */

body {
    background: radial-gradient(circle at top, #ffffff 0%, #f1f5f9 60%, #e5e7eb 100%);
}

/* центрирование */
.auth-wrapper {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

/* карточка */
.auth-card {
    width: 100%;
    max-width: 400px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    padding: 26px 22px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.06);

    animation: fadeIn .35s ease;
}

/* заголовок */
.auth-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 18px;

    color: #111827;
}

/* input */
.auth-input {
    width: 100%;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    padding: 11px 12px;

    font-size: 14px;

    margin-bottom: 10px;

    background: #f9fafb;
    transition: all .2s ease;
}

.auth-input:focus {
    border-color: #111827;
    background: #ffffff;
    outline: none;

    box-shadow: 0 0 0 2px rgba(17,24,39,0.08);
}

/* =========================
   BUTTON (COMPACT NEUTRAL)
========================= */

.auth-btn {
    display: block;
    margin: 14px auto 0;

    width: auto;
    min-width: 140px;

    padding: 10px 18px;

    background: #111827;
    color: #ffffff;

    border: none;
    border-radius: 10px;

    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.3px;

    cursor: pointer;

    transition: all .2s ease;
}

/* hover */
.auth-btn:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* active */
.auth-btn:active {
    transform: scale(0.96);
}

/* =========================
   LINKS
========================= */

.auth-links {
    display: flex;
    justify-content: space-between;

    font-size: 12.5px;
    margin-top: 14px;

    color: #6b7280;
}

.auth-links a {
    color: #374151;
    text-decoration: none;
}

.auth-links a:hover {
    color: #000;
}

/* =========================
   CAPTCHA
========================= */

.auth-captcha {
    display: flex;
    justify-content: center;
    margin: 12px 0 6px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 480px){

    .auth-wrapper {
        padding: 14px;
    }

    .auth-card {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .auth-title {
        font-size: 18px;
    }

    .auth-btn {
        width: 100%;
        min-width: auto;
    }

}

/* =========================
   ANIMATION
========================= */

@keyframes fadeIn {
    from {opacity:0; transform:translateY(10px);}
    to {opacity:1; transform:translateY(0);}
}




/* =========================
   OTP INPUTS FIX
========================= */

.auth-otp {
    display: flex;
    justify-content: center;
    gap: 10px;

    margin-bottom: 10px;
}

/* сами input */
.auth-otp input {
    width: 44px;
    height: 48px;

    text-align: center;
    font-size: 18px;
    font-weight: 600;

    border: 1px solid #e5e7eb;
    border-radius: 10px;

    background: #f9fafb;

    transition: all .2s ease;
}

/* focus */
.auth-otp input:focus {
    border-color: #111827;
    background: #fff;
    outline: none;

    box-shadow: 0 0 0 2px rgba(17,24,39,0.1);
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 480px){

    .auth-otp {
        gap: 6px;
    }

    .auth-otp input {
        width: 38px;
        height: 44px;
        font-size: 16px;
    }

}





.auth-success-icon{
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    font-size: 30px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-text{
    text-align: center;
    margin-bottom: 15px;
    color: #ccc;
}

.auth-info-block{
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
}

.auth-info-block p{
    margin: 5px 0;
}

.auth-btn{
    display:block;
    text-align:center;
    text-decoration:none;
}



.auth-info-item{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.auth-info-item p{
    margin: 0;
}

.auth-info-icon{
    min-width: 20px;
    margin-top: 2px;
    opacity: 0.7;
}

