/* Inicia formularios */
.log-form {
  padding: 1rem;
}

.log-form > h1 {
  text-align: center;
}

.form {
  display: flex;
  flex-direction: column;
}

.form > label {
  font-size: 1.2rem;
  color: black;
  line-height: 1.5rem;
}

.form > span {
  color: var(--g600);
  font-size: 0.9rem;
}

.form span > i {
  color: var(--g400);
}

.form-error {
  color: red !important;
  font-size: 0.9rem;
}

.form-error i {
  color: red !important;
}

.campo-txt {
  justify-content: center;
  font-size: 1.2rem;
  align-items: center;
  border: none;
  margin: 1rem 0;
  height: 2rem;
  background-color: var(--g300);
  color: var(--s);
  padding: 0.5rem 0.5rem;
  outline: none;
  transition: background-color 0.2s ease-in-out;
}

.campo-txt:hover {
  background-color: var(--g200);
}

.formfield {
  font-size: 1.2rem;
  border: none;
  margin: 1rem 0;
  background-color: var(--g300);
  color: var(--s);
  padding: 0.5rem 0.5rem;
  outline: none;
  transition: background-color 0.2s ease-in-out;
}

.formfield:hover {
  background-color: var(--g200);
}

.btn {
  margin: 0.5rem auto;
  width: 10rem;
  background-color: var(--s);
  color: white;
  border: none;
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 2px;
  text-transform: uppercase;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.4);
  transition: background-color 0.2s ease-in-out;
}

.btn:hover {
  background-color: var(--s0);
}

.btn:active {
  transform: translateY(2px);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.4);
}

.errores-form {
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 5px;
  border: var(--p0) 3px solid;
  line-height: 1.5rem;
  animation-name: error;
  animation-duration: 1s;
  opacity: 1;
}

@keyframes error {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
  }
}
.errores-form > h3 {
  margin: 0 0 1rem 0;
  padding: 0;
  color: var(--p0);
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.errores-form > ol {
  list-style: decimal;
  margin-left: 1rem;
  padding: 0;
}

.errores-form ol > li {
  margin: 0;
  padding: 0;
}

.errores-form ol > li::marker {
  color: var(--p0);
  font-weight: bold;
}

.errores-form li > a {
  color: var(--s);
  text-decoration: underline;
}

.errores-form li > a:hover {
  color: white;
  background-color: var(--s);
}

/* Fin formularios *//*# sourceMappingURL=form.css.map */