main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 15px;
}

.container {
  max-width: 25rem;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  color: var(--text-light);
}

.logo {
  height: 70px;
  border: none;
  border-radius: 8px;
  padding: 6px;
  background-color: var(--primary);
  box-shadow: 0px 1px 2px 0px var(--drop-shadow);
}

h1 {
  text-align: center;
  font-size: 30px;
  color: var(--text-dark);
}

input + input {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.error {
  padding: 0.5rem 1rem;
  margin: 0.2rem 0 0.7rem 0;
  background-color: rgba(255, 75, 75, 0.4);
  border: none;
  border-radius: 0.7rem;
  display: block;
}

form {
  margin-top: 15px;
  width: 100%;
}

form > * {
  margin: 10px 0;
}

form button {
  margin-top: 20px;
}

.remember-forgotten-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin: 20px 0;
}

.login {
  margin-top: 0.3rem;
}

.login-link {
  text-decoration: none;
  color: var(--secondary);
  transition: all 0.2s ease;
}

.login-link:hover,
.login-link:focus {
  color: var(--thirdary);
  outline: none;
}

.login-link:active {
  font-size: 12px;
}
