div.main-content {
  display: flex;
  align-items: center;
  margin: 3rem 1.6rem 2rem 1.6rem;
  transition: all 0.2s 0.7s;
  overflow: hidden;
  border: .2rem solid var(--purple);
  border-radius: 15px;
}

/* div.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
} */

.modal-body {
  text-align: center;
  align-items:stretch;
}

.title-modal-step {
  color: #605ef5;
  font-weight: 300;
  padding: .3rem;
  font-size: 2.2rem;
  width: 100%;
  min-width: fit-content;
}

div.content-buttons-login {
  display: flex;
  justify-content: space-evenly;
}


.register-params {
  width: 100%;
}

.login-params {
  width: 100%;
}

.input-field-login {
  width: 100%;
  min-width: fit-content;
  background-color: #f0f0f0;
  height: 45px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 10% 89%;
  margin: 0.8rem 0.5rem 0.5rem;
  position: relative;
  color: #333;
}

.input-field-login-password {
  width: 100%;
  min-width: fit-content;
  background-color: #f0f0f0;
  height: 45px;
  border-radius: 55px;
  display: grid;
  grid-template-columns: 10% 70% 20%;
  margin: 0.8rem 0.5rem 0.5rem;
  position: relative;
  color: #333;
}


.input-field-login i {
  text-align: center;
  line-height: 45px;
  color: #615e60;
  transition: 0.5s;
  font-size: 1.5rem;
}

.input-field-login-password i {
  text-align: center;
  line-height: 45px;
  color: #615e60;
  transition: 0.5s;
  font-size: 1.5rem;
}

.input-field-login-password.toggle-password {
  position: absolute;
  right: 0;
  left: 90%;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  cursor: pointer;
  border-radius: 55px;
}

.toggle-password {
  border: none;
  outline: none;
  background: var(--purple);
  border: 0.2rem solid var(--purple);
  color: #fff;
  border-top-right-radius: 2.3rem;
  border-bottom-right-radius: 2.3rem;
}

i.fa-eye-slash, i.fa-eye{
  color: #fff;
}

.toggle-password:hover {
  background:var(--darkblue);
  border: 0.2rem solid var(--darkblue);
}


.input-field-login i.vista, .input-field-login i.registro {
  color: #fff;
}

.input-field-login input {
  background: #f0f0f0;
  outline: none;
  border: none;
  line-height: 1;
  font-size: 1.8rem;
  color: #333;
  width: 95%;
}

.input-field-login-password input {
  background: none;
  outline: none;
  border: none;
  line-height: 1;
  font-size: 1.8rem;
  color: #333;
}

.button-register {
  grid-template-columns: 40% 60%;
}

.btn-login {
  display: inline-block;
  text-align: center;
  min-width: 15rem;
  padding: 0.7rem 1rem;
  margin: 1rem 0.5rem 0 0.5rem;
  border-radius: 2rem;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 2px 1rem 0.6rem 0px rgb(4 4 4 / 20%);
  transition: all .3s linear;
  flex: 1;
}


.input-field-login input.disabled {
  color: #989fa8;
  cursor: not-allowed;
}

.input-field-login input.disabled::placeholder {
  color: #989fa8;
  cursor: not-allowed;
}



@media (max-width:768px) {

  div.content-buttons-login {
    display: block;
  }

  .btn-login {
    min-width: 100%;
  }

}

@media (max-width:450px) {

  div.content-buttons-login {
    display: block;
  }

  .btn-login {
    min-width: 100%;
  }

}