body {
    background-color: #f5ebda;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
    -webkit-tap-highlight-color: transparent;
}

.register-container {
    background-color: #cfc6b8;
    border: 2px solid #0c3b2e;
    border-radius: 25px;
    padding: 40px 30px;
    width: 100%;
    max-width: 380px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #0c3b2e;
    font-weight: bold;
    font-size: 35px;
    font-family: "Comic Sans MS", cursive;
    margin-top: 5px;
    margin-bottom: 20px;
}

label {
    color: #0c3b2e;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid #0c3b2e;
    border-radius: 25px;
    outline: none;
    background-color: #f5ebda;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* 🔹 Baris tombol (horizontal, selalu sejajar) */
.button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: nowrap; /* ✅ tombol tidak turun ke bawah */
    margin-top: 15px;
}

.btn,
a.btn {
    flex: 1; /* ✅ otomatis menyesuaikan lebar */
    max-width: 48%; /* ✅ agar dua tombol muat sejajar */
    padding: 8px 0;
    border: 2px solid #0c3b2e;
    border-radius: 25px;
    background-color: #f5ebda;
    color: #0c3b2e;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
}

.btn:hover {
    background-color: #0c3b2e;
    color: #fff;
}

/* === RESPONSIVE === */

@media (max-width: 480px) {
    .register-container {
        width: 90%;         /* biar fleksibel di layar kecil */
        margin: 0 15px;     /* jarak kiri-kanan */
        padding: 20px 25px;
    }

    h2 {
        font-size: 24px;
    }

    input {
        font-size: 14px;
        padding: 8px;
    }

    /* ✅ Tetap horizontal di HP kecil */
    .button-row {
        justify-content: space-between;
        gap: 40px;
        margin-top: 10px;
    }

    .btn,
    a.btn {
        max-width: 48%;
        font-size: 13px;
        padding: 8px 0;
    }
}

