/* ================= GLOBAL ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', sans-serif;
}

body{
    background:#f4f6fb;
}

/* ================= CONTAINER ================= */
.container{
    max-width:420px;
    margin:auto;
    padding:20px;
}

/* ================= HEADER ================= */
.logo{
    width:65px;
    border-radius:14px;
    margin-bottom:10px;
}

.header h2{
    font-size:20px;
    font-weight:700;
}

.header p{
    color:#666;
    font-size:14px;
}

/* ================= CARD ================= */
.card{
    margin-top:15px;
    background:#fff;
    padding:20px;
    border-radius:16px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

/* ================= ALERT ================= */
.alert{
    background:#ffecec;
    color:red;
    padding:10px;
    border-radius:10px;
    margin-bottom:15px;
    font-size:13px;
}

/* ================= INPUT ================= */
.input-box{
    display:flex;
    align-items:center;
    background:#f1f3f8;
    padding:12px;
    border-radius:12px;
    margin-bottom:12px;
    position:relative;
}

.input-box i{
    margin-right:8px;
    color:#888;
}

.input-box input{
    border:none;
    background:transparent;
    flex:1;
    outline:none;
    font-size:14px;
}

/* PREFIX +62 */
.prefix{
    margin-right:8px;
    font-weight:600;
    color:#333;
}

/* ICON TOGGLE */
.toggle{
    cursor:pointer;
}

/* ================= NOTE ================= */
.note{
    font-size:12px;
    color:#ff4d4f;
    margin-bottom:10px;
}

/* ================= SECURITY ================= */
.secure{
    font-size:12px;
    color:#777;
    margin-bottom:15px;
}

/* ================= SWIPE ================= */
.swipe{
    margin:15px 0;
}

.swipe-track{
    position:relative;
    height:50px;
    background:#e2e6f0;
    border-radius:50px;
    display:flex;
    align-items:center;
    padding-left:60px;
    color:#777;
    font-size:14px;
    overflow:hidden;
}

.swipe-btn{
    position:absolute;
    left:5px;
    width:40px;
    height:40px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:0.2s;
    
    /* 🔥 penting biar bisa swipe di HP */
    touch-action:none;
}

/* ================= AGREE ================= */
.agree{
    font-size:13px;
    display:block;
    margin:10px 0;
    color:#333;
}

/* ================= BUTTON ================= */
.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:linear-gradient(90deg,#4c6ef5,#5f82ff);
    color:#fff;
    font-weight:bold;
    cursor:pointer;
    transition:0.2s;
}

.btn:hover{
    opacity:0.9;
}

.btn:disabled{
    background:#ccc;
    cursor:not-allowed;
}

/* ================= LOGIN ================= */
.login-link{
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

.login-link a{
    color:#4c6ef5;
    font-weight:bold;
    text-decoration:none;
}