body {
  min-height: 100vh;
  min-height: 100svh;

  display: flex;
  flex-direction: column;
}

.header {
  background-color: #000;
  color: var(--font-color-2);

  display: grid;
  grid-template-columns: 10rem 1fr 10rem;
  justify-items: center;
  align-items: center;
}

.main {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  background-image: url('../assets/img/fondos/inicio.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: var(--gap-l);
  padding: var(--pad-xl);

  border: 4px solid var(--color-white);
  border-radius: 10px;

  background-color: var(--card2-bg-color);
}

.form .emphasis {
  color: var(--color-primary);
}

svg {
  width: 24px;
  height: 24px;
}

.form header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: var(--pad-m);

  background-color: var(--color-white);

  border-radius: 10px;
}
.form section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  gap: var(--gap-m);

  width: 100%;
  padding: var(--pad-m);

  background-color: var(--color-white);

  border-radius: 10px;
}

.form section > div {
  width: 73%;
}

.form footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  width: 100%;
  padding: var(--pad-m);

  background-color: var(--color-white);

  border-radius: 10px;
}

.form i {
  display: flex;
}

.password-input-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--gap-s);
}

.arrow-back {
  width: 50%;
  margin: auto;
}

.submit-button {
  padding: var(--pad-s);
  border: 2px solid var(--color-dark);
}

.submit-button:hover {
  cursor: pointer;
  background-color: var(--button-bg-hover);
}
