/* extracted from templates/login.html */
.auth-page{
    min-height:76vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:60px 16px;
    background:
        radial-gradient(circle at top right, rgba(226,93,151,.18), transparent 34%),
        radial-gradient(circle at bottom left, rgba(0,0,0,.07), transparent 34%),
        #fff8fb;
}
.auth-card{
    width:100%;
    max-width:700px;
    padding:38px 34px;
    border-radius:34px;
    background:rgba(255,255,255,.84);
    border:1px solid rgba(226,93,151,.14);
    box-shadow:0 28px 80px rgba(0,0,0,.10);
    backdrop-filter:blur(18px);
}
.auth-icon{
    width:70px;
    height:70px;
    margin:0 auto 16px;
    display:grid;
    place-items:center;
    font-size:34px;
    border-radius:22px;
    background:linear-gradient(135deg,#d95b96,#9e2f66);
    color:#fff;
    box-shadow:0 16px 36px rgba(157,44,100,.22);
}
.auth-card h1{
    text-align:center;
    font-weight:950;
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:8px;
    color:#241521;
}
.auth-subtitle{
    text-align:center;
    color:#6c7280;
    line-height:1.9;
    margin-bottom:26px;
    font-weight:700;
}
.auth-form{
    display:block;
}
.form-group{
    margin-bottom:18px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:900;
    color:#332434;
}
.form-group input{
    width:100%;
    height:58px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
    padding:0 16px;
    font-size:1.05rem;
    font-weight:800;
}
.form-group input:focus{
    outline:none;
    border-color:#d95b96;
    box-shadow:0 0 0 4px rgba(217,91,150,.12);
}
.visual-captcha-wrap{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
    margin:20px 0 20px;
    padding:16px;
    border-radius:22px;
    background:linear-gradient(135deg, rgba(255,240,247,.95), rgba(255,255,255,.9));
    border:1px solid rgba(217,91,150,.18);
}
.visual-captcha-label{
    display:block;
    margin-bottom:10px;
    font-weight:950;
    color:#332434;
}
.visual-captcha-top{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}
.visual-captcha-image{
    width:190px;
    height:70px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.08);
    background:#fff;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
    object-fit:cover;
}
.visual-captcha-refresh{
    width:48px;
    height:48px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#d95b96,#902f63);
    color:#fff;
    font-size:22px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 22px rgba(144,47,99,.20);
}
.visual-captcha-input{
    width:100%;
    height:58px;
    border-radius:18px;
    border:1px solid rgba(0,0,0,.12);
    background:#fff;
    padding:0 16px;
    font-size:1.05rem;
    font-weight:900;
    text-align:center;
    direction:ltr;
}
.visual-captcha-input:focus{
    outline:none;
    border-color:#d95b96;
    box-shadow:0 0 0 4px rgba(217,91,150,.12);
}
.visual-captcha-help{
    margin-top:8px;
    color:#7a6a75;
    font-size:.92rem;
    font-weight:700;
}
.auth-btn{
    width:100%;
    min-height:64px;
    border:none;
    border-radius:999px;
    background:linear-gradient(135deg,#db5f97,#8f2e61);
    color:#fff;
    font-size:1.15rem;
    font-weight:950;
    cursor:pointer;
    box-shadow:0 18px 36px rgba(143,46,97,.22);
}
.auth-links{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin-top:22px;
    font-weight:900;
}
.auth-links a{
    color:#8f2e61;
    text-decoration:none;
}
@media(max-width:768px){
    .auth-card{
        padding:28px 18px;
        border-radius:26px;
    }
    .visual-captcha-top{
        flex-direction:row;
    }
    .visual-captcha-image{
        width:170px;
    }
}
