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

body {
    background: #f5f7fd;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 25px;
    color: #333;
}

/* ========== CONTAINER ========== */
.container {
    width: 100%;
    max-width: 480px; /* Pas di HP & laptop */
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    animation: fadeIn 0.6s ease;
    border: 1px solid #e6e9f5;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ========== LOGO ========== */
.logo {
    width: 75px;
    display: block;
    margin: 0 auto 10px auto;
}

/* ========== TITLES ========== */
.title {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #3446b5;
}

/* ========== INPUTS ========== */
label {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    color: #444;
}

input, select, textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 10px;
    border: 1.4px solid #cfd6f0;
    background: #f8f9ff;
    margin-bottom: 14px;
    transition: .25s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #5065ff;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(80,101,255,0.15);
    outline: none;
}

/* ========== BUTTON ========== */
button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
    border: none;
    background: #5065ff;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

button:hover {
    background: #3446d0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(80,101,255,0.3);
}

button:active {
    transform: scale(0.98);
}

/* ========== PREVIEW GAMBAR ========== */
#previewImage {
    width: 100%;
    border-radius: 10px;
    display: none;
    margin-top: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* ========== BLOCK INFORMASI ========== */
.section-title {
    padding-left: 8px;
    border-left: 4px solid #3446b5;
    font-weight: 600;
    font-size: 14px;
    margin: 16px 0 8px 0;
    color: #3446b5;
}

/* GPS / lokasi */
.location-box {
    background: #eef1ff;
    padding: 10px;
    border-radius: 10px;
    border: 1.4px solid #d6dbfb;
    font-size: 13px;
    margin-bottom: 15px;
}

/* ========== FOOTER ========== */
.footer {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #777;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 480px) {
    .container {
        padding: 18px;
        border-radius: 14px;
    }

    .title {
        font-size: 17px;
    }

    input, select, textarea {
        font-size: 13.5px;
        padding: 11px 13px;
    }

    button {
        font-size: 14px;
        padding: 12px;
    }
}

@media (min-width: 900px) {
    .container {
        max-width: 520px; /* Pas di laptop admin */
    }
}
