body{
    background-color: #a2b2b2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container {
    background-color: #fff;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px 100px 60px 60px;
    box-sizing: border-box;
    box-shadow:0 0 10px rgba(0, 0, 0, 0.2);
}
  
  h1 {
    text-align: center;
    font-family: sans-serif ;

  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input,
  textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  button[type="submit"] {
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    align-items: center;
  }
  
  button[type="submit"]:hover {
    background-color: #45a049;
  }
  