@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("https://i.pinimg.com/originals/f9/b8/8d/f9b88deeae101d6a8572063bb63c286e.gif") no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

/* Floating Container */
.container {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    max-width: 550px;
    min-height: 350px; /* Menambahkan tinggi minimum */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: 0.3s;
}

.container:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Input & Button */
input {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 5px;
    padding: 12px;
    width: 100%;
    margin: 12px 0;
    font-size: 16px;
    text-align: center;
}

button {
    background: #4F46E5;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 25px;
    transition: 0.3s;
}

button:hover {
    background: #4338CA;
    transform: scale(1.05);
}

/* Responsif untuk HP */
@media (max-width: 480px) {
    .container {
        width: 90%;
        padding: 25px;
        min-height: 300px; /* Lebih tinggi agar nyaman dibaca */
    }
    
    input, button {
        font-size: 14px;
        padding: 12px;
    }
}
