.alert {
  color: var(--error-red);
}

.alert__border {
  border: 0.125rem solid var(--error-red);
}

html {
  width: 100%;
  height: 100%;
}

body {
  box-sizing: border-box;
  font-family: "Titillium Web", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

.flex-container {
  background-color: var(--primary-white);
  display: flex;
  flex-direction: column;
  flex: 30rem;
  align-items: center;
  justify-self: center;
  justify-content: center;
  height: auto;
  max-width: 24rem;
  filter: drop-shadow(0.5rem 0.5rem 1.5rem var(--secondary-text));
  padding-bottom: 1rem;
}

#password--container {
  position: relative;
}

.crossbutton {
  position: absolute;
  bottom: 89%;
  left: 63%;
  height: 1.75rem;
  width: 1.7rem;
  text-align: center;
  border-radius: 10%;
  background-color: var(--background-secondary);
  color: var(--text-secondary);
  border: none;
  opacity: 1;
  font-weight: 800;
}

.crossbutton:hover {
  background-color: var(--text-secondary);
  color: var(--background-primary);
  border: 1px solid transparent;
  transition: all ease-in 0.1s;
  opacity: 0.6;
}

.button {
  padding: 0.5rem 1rem;
  background-color: var(--blue);
  border-radius: 0.25rem;
  border: none;
  color: var(--primary-white);
  opacity: 0.8;
  width: 100%;
  font-weight: 550;
}

.button:hover {
  opacity: 1;
}

hr {
  border: 0.1px solid var(--pastel-blue);
}

.padding-right {
  padding: 0.25rem;
}

.label {
  font-weight: 570;
  display: block;
  padding: 0.25rem 0.5rem 0.25rem 0;
}

.label--terms,
.label--remember {
  margin: 0.25rem 0 0.5rem 0;
}

.signup,
.login {
  margin: 0.75rem 0;
}

.link--secondary {
  text-decoration: none;
  color: var(--blue);
}
