@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&display=swap');
body {
  padding: 0px;
  font-family: 'Lato', sans-serif;
}

  .grid-container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .log-in-form {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  .form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  label {
    font-size: 1.2rem;
    color: #223466;
    margin-bottom: 0.5rem;
  }
  .button {
    background-color: #cb9d1d;
    color: white;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1.2rem;
    margin-top: 1.5rem;
  }
  a {
    font-size: 1.2rem;
    color: #223466;
    margin-top: 1.5rem;
    display: block;
  }

 