  body,
  html {
      margin: 0;
      padding: 0;
      width: 100%;
      height: 100%;
      background-color: #e6e7e8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Montserrat', sans-serif; 
      font-weight: 400;
  }

  #login-container {
      min-height: 650px;
      max-height: 750px;
      max-width: 300px;
      width: 100%;
  }

  #login-form {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
  }

  #login-form input {
      padding: 1rem;
      font-size: 1rem;
      border: 1px solid #c3c3c3;
      border-radius: 6px;
      margin-bottom: 0.25rem;
      color: #000d33
  }

  #login-form button {
      font-family: 'Anton', sans-serif;
      padding: 0.5rem;
      font-size: 1.4rem;
      border: none;
      border-radius: 6px;
      background: #002db9;
      color: #FFFFFF;
      cursor: pointer;
      margin-top: 0.5rem;
  }
  #login-form button:hover {
      background: #001f8c;
  }

  #login-error {
      color: #e74c3c;
      font-size: 0.9rem;
      min-height: 1.2rem;
      text-align: center;
  }