body {
    background-color: #ffefc5;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    margin: 0;
  }
  
  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    width: 400px;
    box-shadow: 1px 1px 5px rgb(160, 160, 160);
  }
  
  h1 {
    font-size: 28px;
    margin: 0;
    text-align: center;
    margin-bottom: 40px;
  }
  
  .input-field {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
  }
  
  label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    flex: 1;
  }
  
  input[type="text"],
  input[type="password"] {
    border: none;
    border-radius: 5px;
    font-size: 16px;
    padding: 10px;
    flex: 1;
    border: solid 1px rgb(213, 213, 213);
  }
  
  button[type="submit"] {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    background-color: #ffbf00;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    padding: 15px;
  }
  
  button[type="submit"]:hover {
    background-color: #f59f00;
  }
  