body{
font-family: Arial, sans-serif;
background: linear-gradient(to right,#5f7cff,#9c6bff);
display:flex;
justify-content:center;
align-items:center;
height:100vh;
margin:0;
}

.container{
background:white;
padding:30px;
border-radius:10px;
width:300px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

input{
width:90%;
padding:10px;
margin:10px 0;
border-radius:5px;
border:1px solid #ccc;
}

.buttons{
display:grid;
grid-template-columns:1fr 1fr;
gap:10px;
margin-top:15px;
}

button{
padding:10px;
border:none;
border-radius:5px;
background:#5f7cff;
color:white;
font-weight:bold;
cursor:pointer;
}

button:hover{
background:#4a63d6;
}

.result{
margin-top:20px;
font-size:20px;
font-weight:bold;
}