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

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #74ABE2, #5563DE);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

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

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

label {
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

select, input[type="text"], button {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
}

select:focus, input[type="text"]:focus {
    border-color: #5563DE;
    outline: none;
}

button {
    background: #5563DE;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #3742a1;
}

.result {
    margin-top: 20px;
    padding: 15px;
    background: #f4f6ff;
    border-left: 5px solid #5563DE;
    border-radius: 10px;
    text-align: left;
}
