/* DEBUT Style Custom Login Shield*/
.arx-container{
  height: 100vh;
}
.container_flex_login{
  position: relative;
  height: 100%;
  display: flex;
  align-content: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.container_flex_login .container_logo_sirha{
  height: 100%;
  width: 43%;
  display: flex;
  background-color: #F7F2E7;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
}
.container_flex_login .form_login_shield{
  flex: 2 1 auto;
  padding-left: 101px;
  padding-right: 101px;
}

.container_logo_sirha img {
  width: 227px;
}

.form_login_shield input {
  border: none;
  border-radius: unset;
  border-bottom: 1px solid #000000;
  background-color: #F7F7F7;
}
.form_login_shield button {
  padding: 12px 30px 12px 30px;
  background-color: #000000;
  border-radius: 0px;
  border: none;
  width: fit-content;
  color: #ffffff;
}
.form_login_shield .container_submit {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
}

.form_login_shield h1{
  font-weight: 700;
  font-size: 32px;
  padding-bottom: 24px;
}
.form_login_shield a{
  color: #000000;
}
/* FIN Style Custom Login Shield*/



/* DÉBUT - STYLE FORM RESET PASSWORD */
.link-return-login {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}
.card-body-reset {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form_login_shield.reset_password form {
  width: fit-content;
}

.div-input-reset  {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}

.div-input-reset label {
  margin-right: 15px;
}
.div-input-reset input {
  min-width: 250px;
}

/* Password field with show/hide toggle */
.password-input-wrapper {
  position: relative;
  display: inline-block;
}
.password-input-wrapper input {
  padding-right: 40px;
}
.password-input-wrapper .password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.password-input-wrapper .password-toggle:hover {
  color: #000;
}
.password-input-wrapper .password-toggle svg {
  display: block;
}

.button-submit-reset {
  margin-top: 45px;
  display: flex;
  justify-content: center;
}

/* FIN - STYLE FORM RESET PASSWORD */



@media (max-width: 768px) {
  .container_flex_login {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .container_flex_login .container_logo_sirha {
    width: 100% !important;
    height: 30% !important;
  }

  .container_flex_login .form_login_shield {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .div-input-reset {
    flex-direction: column !important;
  }

  .form_login_shield.reset_password form {
    width: 100% !important;
  }

  .div-input-reset input {
    min-width: 100% !important;
    padding: 10px 0 10px 20px;
  }
}