/* Import font modern */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #89f7fe, #66a6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Container Card */
.container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

/* Input, Select, Button */
input[type="text"], button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

input[type="text"]:hover {
    border-color: #66a6ff;
}

button {
    background: #66a6ff;
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

button:hover {
    background: #4a90e2;
}

/* Result Box */
.result {
    background: #f0f8ff;
    border: 1px solid #66a6ff;
    border-radius: 15px;
    padding: 15px;
    margin-top: 20px;
    text-align: left;
}
