body {
    margin: 0;
    padding: 0;
    background-image: url('cover.png');
    background-color: #000E3C;
    background-size: cover;
    background-position: center;
}

.website {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.bannerImg {
    width: 100%;
}

h1 {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

label {
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

    .login-container {
      background-color: white;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 300px;
    }
    .login-container h2 {
      text-align: center;
      margin-bottom: 20px;
    }
    .login-container input[type="text"],
    .login-container input[type="password"] {
      font-family: "EB Garamond", serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        width: 100%;
      padding: 10px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 4px;
        font-size: 0.8em;
    }
    .login-container input[type="submit"] {
      width: 100%;
      padding: 10px;
      background-color: #000E3C;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    font-family: "EB Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    font-size: 1em;
    }
    .login-container input[type="submit"]:hover {
      background-color: #000E3C;
    }

.login-container input[type="text"],
.login-container input[type="password"],
.login-container input[type="submit"] {
  width: 100%; /* or a fixed width like 250px */
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}
