header {
  height: 60px;
  width: 100%;

  display: flex;
  align-items: center;

  position: fixed;
  top: 0;
  z-index: 10;

  background-color: #222;
}

.main-menu a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
}

/* login styling */

body {
  font-family: sans-serif;
}

.login-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background-color: #ccc;
}

.login-form {
  display: flex;
  flex-direction: column;

  padding: 40px;

  margin-bottom: 60px;

  border-radius: 10px;
  background-color: #fff;

  width: 100%;
  max-width: 30%;
}

.login-form button {
  height: 30px;
  width: 17.5%;

  margin-top: 10px;

  text-transform: uppercase;
  background-color: #000;
  color: #fff;

  border: none;
}

.login-form button:hover {
  cursor: pointer;
}

.login-form h3 {
  font-weight: 800;
  font-size: 2rem;

  margin-bottom: 10px;
}

.login-field {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}

.login-field input {
  height: 30px;

  margin: 5px 0;

  font-size: 1.2rem;
}

.login-field label {
  font-weight: 500;
  font-size: 1.2rem;
}

.error-container {
  height: 20px;

  display: flex;
  align-items: center;

  margin: 15px 0;
}
