.modal_refinancing_auth {
  align-items: center;
  height: 100%;
  justify-content: center;
  left: 0;
  top: 0;
  display: none;
  position: absolute;
  width: 100%;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.modal_refinancing_auth.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.modal_refinancing_auth .modal_back {
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.modal_refinancing_auth .modal_refinancing_auth__box {
  background-color: white;
  border-radius: 8px;
  color: #222831;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  width: 90%;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-50px);
  opacity: 0;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}
.modal_refinancing_auth.open .modal_refinancing_auth__box {
  transform: translate(-50%, -50%) translateY(0);
  opacity: 1;
}
.modal_refinancing_auth__header {
  font-size: 16px;
  line-height: 16px;
  margin-bottom: 20px;
}
.modal_refinancing_auth .id_container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_refinancing_auth .id_container .fa.fa-id-card {
  font-size: 20px;
  margin-right: 10px;
}

.modal_refinancing_auth .modal__content p {
  margin-top: 15px;
  margin-bottom: 15px;
}
.modal_refinancing_auth .modal_refinancing_auth_rut {
  font-size: 14px;
}
.btn_white {
  background-color: white;
  border: 1px solid #8a00e2;
  border-radius: 8px;
  padding: 12px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
  font-weight: bold;
  font-size: 15px;
  color: #3d3d3d;
}
.modal_refinancing_auth__box .btn_purple {
  margin-top: 30px;
}
.btn_purple {
  background-color: #8a00e2;
  border-radius: 8px;
  color: white;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 12px;
  transition: all 0.3s ease-in-out;
}
.btn_purple:disabled {
  background-color: #bdbdbd;
  cursor: not-allowed;
}
.btn_purple:hover:not(:disabled) {
  background-color: #a247db;
}
.btn_white:hover {
  background-color: #f7f0ff;
}
.outlined-input-container {
  align-items: center;
  background-color: white;
  border-radius: 5px;
  border: 1px solid #8a00e2;
  display: flex;
  margin: 30px 0 0 0;
  padding: 10px;
  position: relative;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.outlined-input-container.error {
  border: 1px solid #ff1622;
}
.outlined-input-container label {
  background-color: white;
  font-size: 14px;
  left: 10px;
  line-height: 14px;
  padding: 0 5px;
  position: absolute;
  top: -10px;
}
.outlined-input-container input {
  background-color: white;
  border: none;
  flex-grow: 1;
  font-size: 14px;
  outline: none;
  padding: 5px;
  height: 30px;
  max-height: 30px;
  transition: none;
}
.outlined-input-container input[type="password"] {
  letter-spacing: 10px;
}
.outlined-input-container input::placeholder,
.outlined-input-container input[type="password"]::placeholder {
  font-size: 12px;
  line-height: 12px;
  color: #3d3d3d;
  letter-spacing: 0px;
  margin-top: -5px;
  font-family: "Cera Round Pro Regular", sans-serif;
}
.outlined-input-container button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #6200ea;
  width: auto;
  margin-left: 10px;
}
.outlined-input-container button span {
  font-size: 20px;
}

.modal_refinancing_auth .spinnerMigration {
  height: 70px;
  margin: 1.3rem auto;
  margin-bottom: 2.1rem;
  width: 70px;
}
.modal_refinancing_auth .spinnerMigration span {
  display: inline-block;
  width: 100%;
  height: 100%;
  -webkit-animation: spin 1.4s linear infinite;
  animation: spin 1.4s linear infinite;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
}
.modal_refinancing_auth .spinnerMigration .circleSvg {
  stroke: url(#linearColors) !important;
  stroke-dasharray: 113px, 200px;
}
.auth-loader-content {
  display: none;
}
.auth-loader-content_title {
  text-align: center;
  line-height: normal;
}
.auth-loader-content_text {
  text-align: center;
  font-size: 13px;
  font-family: "Cera Round Pro Regular";
  line-height: normal;
}
.input-error-message {
  color: #ff1622;
  font-size: 12px;
  line-height: normal;
  display: none;
}
@media screen and (max-width: 1150px) {
  .modal_refinancing_auth {
    position: fixed;
  }
}
