/* ================= RESET ================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f4f6f9;
    line-height:1.5;
    overflow-x:hidden;
}
/* ================= CONTAINER ================= */
.container{
    width:100%;
    max-width:900px;
    margin:auto;
    padding-bottom:100px;
}
/* ================= HEADER ================= */
.satu{
    width:100%;
    height:80px;
    background:black;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 8px;
}
/* LOGO */
.namatoko{
    display:flex;
    align-items:center;
}
.namadepan{
    color:white;
    font-size:1.2rem;
    font-weight:bold;
}
.namabelakang{
    color:crimson;
    margin-left:4px;
    font-size:1rem;
}
/* FOTO USER */
.foto{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.bingkai{
    width:43px;
    height:43px;
    border-radius:50%;
    overflow:hidden;
    background:#fff;
}
.bingkai img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.inisial{
    margin-top:5px;
    font-size:9px;
}
.inisial a{
    color:white;
    text-decoration:none;
}
/* ICON */
.icon{
    display:flex;
    align-items:center;
    gap:10px;
}
.lonceng{
    width:28px;
    margin-left: 120px;
}
/* ================= MENU BAWAH ================= */
.dua{
    width:100%;
    height:70px;

    position:fixed;
    bottom:0;
    left:0;
    z-index:1000;

    display:flex;
    justify-content:space-around;
    align-items:center;

    background:linear-gradient(80deg,#6a376c 0,#8ec5fc);
}
.dua img{
    width:40px;
}
/* ================= SPACER ================= */
.tiga{
    width:100%;
    background:rgb(219,231,240);
    padding:10px;
    position:relative;
}
.judul h2{
    text-align:center;
    font-size:8px;
    font-weight:600;
}
/* NAVIGASI */
.navigasi{
    margin-top:10px;
    display:flex;
    justify-content:flex-end;
}
.kembali{
    padding:8px 15px;
    border:1px solid black;
    border-radius:20px;
    background:white;
    font-size:8px;
}
.kembali a{
    text-decoration:none;
    color:black;
}
/* ================= CONTENT ================= */
.empat{
    width:100%;
    padding:14px;
}
/* ================= JUDUL ================= */
.judul{
    position:relative;
    margin-bottom:20px;
}
.judul h2{
    text-align:center;
    font-size:24px;
    font-weight:700;
    color:#222;
}
.navigasi{
    position:absolute;
    right:0;
    top:0;
}
.kembali{
    padding:8px 16px;
    border:1px solid #333;
    border-radius:20px;
    background:white;
}
.kembali a{
    text-decoration:none;
    color:#333;
    font-size:13px;
    font-weight:600;
}
/* ================= INSTRUKSI ================= */
.intruksi{
    width:100%;
    background:white;
    padding:8px;
    margin-bottom:8px;
    border-radius:14px;
    color:#1d4ed8;
    font-size:13px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
.intruksi strong{
    color:#111;
}
.intruksi h3{
    margin-top:8px;
    color: green;
    font-weight:700;
    font-size:13px;
    text-align: center;
}
/* ================= FORM ================= */
.kotak{
    width:100%;
    background:white;
    border-radius:14px;
    padding:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}
form{
    width:100%;
}
.form-group{
    display:flex;
    flex-direction:column;
    margin-bottom:10px;
}
.form-group label{
    margin-bottom:6px;
    font-size:12px;
    font-weight:600;
    color: blue;
}
.form-group input,
.form-group select{
    width:100%;
    height:45px;
    border:1px solid #ccc;
    border-radius:10px;
    padding:0 12px;
    font-size:12px;
    background:white;
    outline:none;
}
.form-group input:focus,
.form-group select:focus{
    border-color:#6a376c;
}
/* FILE INPUT */
.form-group input[type="file"]{
    padding:10px;
    height:auto;
}
/* ================= BUTTON ================= */
.co{
    width:100%;
    display:flex;
    justify-content:flex-end;
    margin-top:10px;
}
.kirim{
    background:#6a376c;
    color:white;
    border:none;
    border-radius:25px;
    padding:12px 25px;
    font-size:10px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}
.kirim:hover{
    background:#4b264d;
}
/* ================= TABLET ================= */
@media screen and (min-width:768px){

    .container{
        max-width:700px;
    }

    .judul h2{
        font-size:30px;
    }

    .intruksi{
        font-size:15px;
    }

    .form-group label{
        font-size:15px;
    }

    .form-group input,
    .form-group select{
        height:50px;
        font-size:15px;
    }

    .kirim{
        padding:14px 35px;
        font-size:15px;
    }
}

/* ================= DESKTOP ================= */

@media screen and (min-width:1024px){

    .container{
        max-width:850px;
    }

    .empat{
        padding:25px;
    }

    .kotak{
        padding:30px;
    }

    .intruksi{
        padding:25px;
    }
}