body {
    font-family: 'Nunito', sans-serif;
    /* Menerapkan font Nunito */
    background-image: url('../image/background.png');
    background-size: cover;
    /* Gambar menutupi seluruh area */
    background-repeat: no-repeat;
    /* Mencegah pengulangan gambar */
    background-position: center;
    /* Menempatkan gambar di tengah */
    min-height: 100vh;
    /* Minimum tinggi 100% dari viewport */
    margin: 0;
    /* Menghapus margin default */
    display: flex;
    /* Menggunakan flexbox untuk body */
    align-items: center;
    /* Menyusun item secara vertikal di tengah */
    justify-content: center;
    /* Menyusun item secara horizontal di tengah */
}

.box {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 320px;
    width: 100%;
    text-align: center;
}

.box img {
    width: 100px;
    position: relative;
    top: 15px;
}

.box p {
    font-size: 27px;
    margin-bottom: 20px;
    color: black;
      font-family: 'Arial', sans-serif;
    font-weight: 650;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    text-align: left;
}

input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    width: 93%;
    background-color: #f9f9f9;
}



button {
    padding: 12px;
    background: #4CAF50;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


@media (max-width: 480px) {
    .box {
        padding: 20px;
    }

    input,
    button {
        font-size: 14px;
    }

    button {
        padding: 10px;
    }
}