.form-control {
  position: relative;
  margin: 20px 0 40px;
  width: 100%;
}

.form-control input {
  background-color: transparent;
  border: 2px #fff solid;
  border-radius: 10px;
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  color: #fff;
  padding-left: 30px;
  height: 50px;
}

.form-control input:focus,
.form-control input:valid {
  outline: 0;
  border-bottom-color: white;
}

.form-control label {
  position: absolute;
  top: 15px;
  left: 30px;
  pointer-events: none;
}

.form-control label span {
  display: inline-block;
  font-size: 18px;
  min-width: 5px;
  color: #fff;
  transition: 0.1s ease;
  background: var(--primary);
}

.form-control input:focus + label span,
.form-control input:valid + label span {
  color: white;
  transform: translateY(-28px);
}

.login-section {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  padding: 100px 120px;
  background: var(--primary);
  border-radius: 32px;
}

.login-form {
  gap: 40px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.button-login {
  display: flex;
  height: 50px;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}
.form-control input.has-text + label span {
  transform: translateY(-28px);
  color: white;
}

.error {
  padding-top: 5px;
  display: block;
  position: absolute;
}

.button-login:disabled {
  background: var(--gray);
  color: var(--gray-dark);
}
.button-login {
  /*  box-shadow: 0px 4px 0px 0px #ad0000; */
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 20px */
  border: 0;
  display: flex;
  height: 50px;
  padding: 12px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: var(--orange);
  color: var(--secondary);
  cursor: pointer;
}
.terms-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}
.terms-1 {
  color: var(--dark);
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; /* 16.8px */
  margin: 0;
  text-align: center;
}
.terms-2 {
  text-align: center;

  color: var(--primary);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.otp-inputs {
  display: flex;
  gap: 8px;
}

.otp-char {
  width: 40px;
  height: 50px;
  font-size: 40px;
  text-align: center;
}

.otp-char {
  height: 72px;
  flex: 1 0 0;
  color: var(--secondary);
  border-radius: 20px;

  background: var(--primary-dark);
  border: 0;
  transition: all 0.1s ease-in-out;
}
.otp-char:focus {
  /* Sombra 1 */
  /* box-shadow: 0px 4px 0px 0px #ad0000; */
  border: 1px solid var(--Blanco, #fff);
  outline: none;
}

.titles-login {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .login-section {
    padding: 100px 20px;
  }
}
