*, html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bg.webp);
}

/* FORMULIR */
.form {
    width: 430px;
    height: auto; /* Ubah menjadi auto untuk responsivitas */
    padding: 40px;
    border-radius: 20px;
    background-color: #ffffff;
    font-family: 'Arial', 'Helvetica', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Tambahkan bayangan */
    transition: transform 0.3s; /* Efek transisi */
}

.form:hover {
    transform: scale(1.02); /* Efek zoom saat hover */
}

.form header {
    font-size: 50px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333; /* Warna teks header */
}

.form input {
    width: 90%;
    display: block;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #ccc; /* Tambahkan border */
    border-radius: 5px; /* Sudut border */
    transition: border-color 0.3s; /* Transisi border */
}

.form input:focus {
    border-color: rgb(77, 77, 248); /* Warna border saat fokus */
    outline: none; /* Hapus outline default */
}

.form p span:hover {
    font-weight: bold;
    cursor: pointer;
    color: rgb(59, 29, 59);
    text-decoration: underline;
}

.form p {
    margin-bottom: 20px;
}

.form p#text1 {
    margin-top: 20px;
    text-align: center;
}

.radio input {
    width: 20px; /* Ubah ukuran radio button */
    margin-bottom: 10px;
}

.form button {
    width: 100%;
    padding: 15px;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 10px;
    background-color: rgb(77, 77, 248);
    cursor: pointer; /* Pointer saat hover */
    transition: background-color 0.3s, border 0.3s; /* Transisi untuk button */
}

.form button:hover {
    background-color: rgb(46, 46, 147);
    border: 2px solid rgba(0, 0, 0, 0.2); /* Border saat hover */
}

.form button:active {
    background-color: rgb(30, 30, 100); /* Warna saat diklik */
}