#sdf-2step-login-container {
    display: block;
    margin: 1%;
    padding: 2%;
}
#sdf-step-1,
#sdf-step-2 {
    margin: 1%;
    padding: 2%;
}

.sdf-spinner img {
    width: 50px;
    height: 50px;
}

.sdf-error {
    color: #f44336;
    _background-color: #ffffff;
    padding: 5px 5px 10px;
    border-radius: 5px;
    font-size: 10px;
    font-weight: 300;
    display: none;
}

.sdf-error::before {
    content: '!';
    border-radius: 100%;
    background-color: #f44336;
    color: #fff;
    font-size: 10px;
    margin: 3px;
    padding: 2px 6px;
}


.sdf-flex {
    display: flex;
    _border: red solid 1px;
}

.sdf-field input {
    outline: none;
    padding: .7em !important;
}
.sdf-field label {
    font-size: small;
    font-weight: 600;
    margin-bottom: 5px;
}
.sdf-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 1em;
    margin-top: .5em;
}
.sdf-field:focus-within > label {
    color: #7451eb;
}

/* .sdf-field:focus-within > input {
    outline-color: #7451eb !important;
    outline: auto;
} */

.sdf-field:focus-within > span {
    outline-color: #7451eb !important;
    outline: auto;
}

#sdf-2step-login-container .sdf-button {
    color: #ffffff;
    background-color: #7451eb;
    padding: 1em .5em;
    font-weight: 700;
    outline: none;
    border: none;
    width: 100%;
    font-size: 14px;
    text-transform: none;
}

#sdf-2step-login-container .sdf-button:hover {
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.26), 0 10px 20px 0 rgba(0, 0, 0, 0.19);
}

/* .courriel::before {
  content: '\f465';
} */

.courriel,
.passwd,
.reset-courriel {
  border: #ccc solid 1px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 5px;
}

.courriel input,
.passwd input,
.reset-courriel input {
    outline: none;
    border: none !important;
    width: 100%;
}
.courriel i,
.passwd i,
.reset-courriel i {
  color: #ccc;
}

.emoj {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}

#ok-login {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 1.5em;
}

.avataricone {
    width: 40px;
    height: 40px;
    aspect-ratio: 1 / 1;
    background-color: rgb(218, 211, 248);
    border-radius: 100%;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    font-size: x-large;
}

.whoami {
    flex-direction: column;
    padding-left: 10px;
}

.loginform-header {
    flex-direction: row;
    align-items: center;
    margin-bottom: 2em;
}

.yourEmail::before {
    content: '👋';
}
.yourEmail {
    font-size: small;
    font-weight: 300;
}

span .returnLogin,
.reset-pass-link {
    text-decoration: underline !important;
    font-size: small;
    font-weight: 500 !important;
}

span .returnLogin:hover,
.reset-pass-link:hover {
    color:#7451eb !important;
}

/* .returnLogin::after {
    content: ' if it is not you';
    text-decoration: none !important;
    font-weight: 300;
    font-style: italic;
} */

.pass-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.passerror {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.passerror .sdf-error {
    padding: 1em;
    background-color: #f9eded;
    margin: 1em;
    margin-left: 0;
    width: 100%;
}

.show-password-btn {
    position: absolute;
    right: 10px;
    /* top: 50%; */
    bottom: 0;
    padding: 0%;
    margin: 0%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 0.8em;
    outline: none;
}

#remember {
    font-size: small;
}

.icony {
  top: 50% !important;
  background-color: transparent !important;
  color: #ccc !important;
}

/* Progress indicator   */

   .progress-indicator {
    position: relative;
    height: 15px;
    background-color: #f2f2f2;
    width: 100%;
  }
  
  .progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #4CAF50;
    width: 0%;
    transition: width 0.5s ease-in-out;
  }
  