/* Reset dasar untuk menghilangkan margin dan padding default */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Styling body untuk font dan latar belakang */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9fafb;
    color: #34495e;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Container utama untuk form */
.container {
    background-color: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

/* Efek hover pada container */
.container:hover {
    transform: translateY(-8px);
}

/* Judul halaman */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #388e3c;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Deskripsi instruksi */
p {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Styling untuk tombol */
button {
    display: inline-block;
    background-color: #388e3c;
    color: white;
    text-decoration: none;
    padding: 25px 50px;
    margin: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-transform: capitalize;
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
}

/* Efek saat hover pada tombol */
button:hover {
    background-color: #388e3c;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Efek saat tombol di-click */
button:active {
    background-color: #388e3c;
    transform: translateY(2px);
}

/* Tampilan responsif untuk perangkat kecil */
@media (max-width: 600px) {
    .container {
        padding: 30px;
        max-width: 90%;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    button {
        padding: 20px 40px;
        font-size: 1.2rem;
        max-width: 100%;
    }
}
