/* ===== LOGIN WRAPPER ===== */
.auth-wrapper{
    min-height:calc(100vh - 64px); /* tinggi header */
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
}

/* ===== LOGIN BOX ===== */
.box{
    width:100%;
    max-width:360px;
    background:#ffffff;
    padding:26px;
    border-radius:16px;
    box-shadow:0 14px 32px rgba(0,0,0,.14);
}

/* TITLE */
.box h3{
    margin:0 0 18px;
    text-align:center;
    font-size:22px;
    font-weight:600;
    color:#1e3a8a;
}

/* MESSAGE */
.msg{
    background:#fee2e2;
    color:#991b1b;
    padding:12px;
    border-radius:10px;
    font-size:13px;
    margin-bottom:14px;
    text-align:center;
}

/* FORM */
.box form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.box input{
    padding:13px 15px;
    border-radius:12px;
    border:1px solid #d1d5db;
    font-size:14px;
    outline:none;
}

.box input:focus{
    border-color:#3b82f6;
    box-shadow:0 0 0 3px rgba(59,130,246,.15);
}

/* BUTTON */
.box button{
    margin-top:6px;
    padding:13px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#4f46e5,#3b82f6);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
}

.box button:active{
    transform:scale(.98);
}

/* FOOT */
.box p{
    text-align:center;
    margin-top:16px;
    font-size:13px;
}

.box p a{
    color:#2563eb;
    text-decoration:none;
    font-weight:500;
}