body {
  display: flex;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  align-items: center;
  padding: 0;
 flex-direction: column;
  margin: 0;
  row-gap: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
input{
    width: 300px;
    height: 40px;
    border-radius: 10px;
    border: none;
    padding-left: 10px;
    /* font-size: 20px; */
    border: 1px solid #ccc;
    outline: none;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
button{
    width: 100px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}