/* 
* Formulario
* -----------------------------------------------------
*/

.formulario {
  background-color: rgb(157 149 87 / 90%);
  border-radius: 10px;
  padding: 36px;
  position: absolute;
  right: 5%;
  top: 15%;
  width: 350px;
}

.formulario.modalForm {
  background-color: rgb(157 149 87);
  border-radius: 0;
  padding: 36px;
  position: initial;
  width: 100%;
}

@media (width <= 992px) {
  .formulario {
    border-radius: 0;
    padding: 18px;
    bottom: 0;
    right: 0;
    transform: translateY(424px);
    width: 100%;
  }
}

.formulario h1 {
  font-family: 'Roboto-Regular';
  font-size: 24px;
  letter-spacing: 0.03rem;
  margin-bottom: 18px;
}

.formulario form .input-style {
  margin-bottom: 18px;
}

.formulario form .input-style input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--white-color);
  caret-color: rgb(0 0 0);
  color: var(--white-color);
  font-family: 'Roboto-Regular';
  font-size: 15px;
  padding: 8px 2px;
  position: relative;
  transition: 350ms ease-in;
  width: 100%;
}

.formulario form .input-style input::placeholder {
  color: var(--white-color);
  font-family: 'Roboto-Regular';
  font-size: 15px;
}

.formulario form .input-style input:focus {
  border: 0;
  outline: 1px solid var(--white-color);
  padding: 12px 8px;
}

.formulario form .checkbox {
  display: flex;
  margin-bottom: 8px;
}

.formulario form .checkbox input {
  accent-color: rgb(0 0 0);
  cursor: pointer;
  width: 18px;
}

.formulario form .checkbox span {
  color: var(--white-color);
  font-family: 'Roboto-Regular';
  font-size: 13px;
  margin-left: 6px;
}

.formulario .submit {
  margin-top: 24px;
}

.formulario .submit input {
  background-color: var(--white-color);
  border: 0;
  color: rgb(0 0 0);
  font-family: 'Roboto-Bold';
  font-size: 19px;
  letter-spacing: 0.2rem;
  transition: 300ms ease-in;
  padding: 4px 0 2px;
  width: 100%;
}

.formulario .submit input:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}
