/* Stage 119 - Login & Daftar Simple sesuai gambar */
:root{
    --ys119-pink:#d92373;
    --ys119-pink-dark:#bd1b61;
    --ys119-text:#3f3f46;
    --ys119-muted:#9ca3af;
    --ys119-line:#cfcfd4;
    --ys119-blue:#23a6c8;
    --ys119-bg:#ffffff;
}
*{box-sizing:border-box}
body.ys-auth119-body{
    margin:0;
    min-height:100vh;
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
    background:#fff;
    color:var(--ys119-text);
}
.ys-auth119-page{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px 18px;
    background:
        radial-gradient(circle at 20% 0%,rgba(217,35,115,.05),transparent 30%),
        radial-gradient(circle at 80% 8%,rgba(35,166,200,.06),transparent 32%),
        #fff;
}
.ys-auth119-card{
    width:min(100%,390px);
    margin:auto;
    background:transparent;
    border:0;
    box-shadow:none;
}
.ys-auth119-toplink{
    text-align:center;
    margin:0 0 18px;
    color:#555;
    font-size:15px;
}
.ys-auth119-toplink a,
.ys-auth119-bottom a{
    color:#27a7c7;
    font-weight:750;
    text-decoration:none;
}
.ys-auth119-field{margin-bottom:16px}
.ys-auth119-field label{
    display:block;
    margin:0 0 7px;
    font-size:16px;
    line-height:1.2;
    font-weight:760;
    color:#444;
}
.ys-auth119-field input,
.ys-auth119-field textarea{
    width:100%;
    height:48px;
    border:1px solid #bfc1c7;
    border-radius:5px;
    background:#fff;
    padding:0 14px;
    color:#333;
    font-size:16px;
    outline:none;
    transition:.18s ease;
}
.ys-auth119-field textarea{height:86px;padding:12px 14px;resize:vertical}
.ys-auth119-field input::placeholder,
.ys-auth119-field textarea::placeholder{color:#b5b5b9}
.ys-auth119-field input:focus,
.ys-auth119-field textarea:focus{
    border-color:var(--ys119-pink);
    box-shadow:0 0 0 3px rgba(217,35,115,.08);
}
.ys-auth119-help{
    margin:7px 0 0;
    font-size:12px;
    color:#aaa;
}
.ys-auth119-password{position:relative}
.ys-auth119-password input{padding-right:46px}
.ys-auth119-eye{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    border:0;
    padding:0;
    border-radius:50%;
    background:#0f172a;
    color:#fff;
    font-size:14px;
    display:grid;
    place-items:center;
    cursor:pointer;
}
.ys-auth119-forgot{
    text-align:right;
    margin:-3px 0 18px;
}
.ys-auth119-forgot a{
    color:var(--ys119-pink);
    text-decoration:none;
    font-weight:800;
    font-size:16px;
}
.ys-auth119-btn{
    width:100%;
    min-height:47px;
    border-radius:5px;
    border:1px solid transparent;
    background:var(--ys119-pink);
    color:#fff;
    font-size:17px;
    font-weight:850;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    text-decoration:none;
    cursor:pointer;
    transition:.18s ease;
}
.ys-auth119-btn:hover{background:var(--ys119-pink-dark);transform:translateY(-1px)}
.ys-auth119-btn-outline{
    background:#fff;
    color:var(--ys119-pink);
    border-color:var(--ys119-pink);
    box-shadow:none;
}
.ys-auth119-btn-outline:hover{background:#fff5fa;color:var(--ys119-pink-dark)}
.ys-auth119-btn-social{
    background:#fff;
    color:#555;
    border-color:#bfc1c7;
    margin-bottom:15px;
    font-weight:750;
}
.ys-auth119-btn-social:hover{background:#fafafa;color:#333;border-color:#a9abb1}
.ys-auth119-social-icon{font-size:22px;font-weight:900;line-height:1}
.ys-auth119-phone{color:var(--ys119-pink)}
.ys-auth119-google{font-size:20px}
.ys-auth119-divider{
    margin:20px 0 18px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:13px;
    color:#9ca3af;
    font-size:14px;
}
.ys-auth119-divider:before,.ys-auth119-divider:after{content:"";height:1px;background:#c9c9ce}
.ys-auth119-bottom{
    text-align:center;
    margin:18px 0 0;
    color:#666;
    font-size:15px;
    line-height:1.5;
}
.ys-auth119-policy{margin-top:10px;color:#666}
.ys-auth119-alert{
    margin:0 0 15px;
    border-radius:8px;
    padding:11px 13px;
    background:#fff1f2;
    color:#9f1239;
    font-size:13px;
    line-height:1.45;
    border:1px solid #fecdd3;
}
.ys-auth119-alert.success{background:#ecfdf3;color:#067647;border-color:#bbf7d0}
.ys-auth119-address-panel{
    display:none;
    margin:16px 0;
    padding:16px;
    border:1px dashed #d9a7c0;
    border-radius:10px;
    background:#fff7fb;
}
.ys-auth119-address-panel.is-open{display:block}
.ys-auth119-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.ys-auth119-note{font-size:12px;color:#777;line-height:1.45;margin:10px 0 0}
@media(max-width:480px){
    .ys-auth119-page{align-items:flex-start;padding:20px 36px 28px}
    .ys-auth119-card{max-width:100%}
    .ys-auth119-field{margin-bottom:15px}
    .ys-auth119-row{grid-template-columns:1fr}
}
@media(min-width:820px){
    .ys-auth119-page{padding:54px 18px}
    .ys-auth119-card{width:390px}
}
