body{
font-family: Arial, sans-serif;
background:#f4f6f8;
padding:40px;
}

.card{
max-width:650px;
margin:auto;
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

h1{
margin-bottom:20px;
}

label{
display:block;
margin-top:15px;
font-weight:bold;
}

input, select{
width:100%;
padding:10px;
margin-top:5px;
border-radius:8px;
border:1px solid #ccc;
}

button{
margin-top:20px;
padding:12px;
width:100%;
border:none;
background:#2563eb;
color:white;
font-size:16px;
border-radius:10px;
cursor:pointer;
}

button:hover {
	background: white;
  color:#2563eb;
}

.results{
margin-top:25px;
background:#f1f5f9;
padding:15px;
border-radius:10px;
display:none;
}

.footer {
  background-color: rgba(176, 211, 244, 0.5);
  text-align: center;
  padding: 15px;
  color: #888;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
 
}


