/* Reset dan konsistensi box */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* assets/css/style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: black;
    overflow-x: hidden; /* cuma sembunyikan horizontal scroll */
    color: white;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

/* Input dan tombol */
input, button, select {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem; /* lebih nyaman dibaca di mobile */
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Tombol spesifik */
button {
    background: #1f8fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
button:hover {
    background: #1478d1;
}

a {
    color: #1f8fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Dropdown option */
select option {
    background-color: #1a1a1a;
    color: #fff;
}

/* Responsif */
@media (max-width: 480px) {
    .container {
        margin: 50px 15px;
        width: auto;
        padding: 15px;
    }
    input, button, select {
        font-size: 1.1rem;
        padding: 12px;
    }
}
