.resetContainer {
    width: 100%;
    margin-top: 5em;
}

#password-lost-form-wrap {
    width: 40vw;
    margin-left: auto;
    margin-right: auto;
}

#password-lost-form-wrap form {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

#password-lost-form-wrap fieldset {
    border: none;
    padding: 0;
}

#password-lost-form-wrap legend {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: var(--fs-2xl);
    margin-bottom: 1.5em;
    display: block;
    width: fit-content;
    position: relative;
    margin-left: 0;
}

#password-lost-form-wrap legend::after {
    content: '';
    background-color: #427E9B;
    height: 3px;
    width: 70%;
    bottom: -11px;
    position: absolute;
    left: 0;
    display: block;
}

#password-lost-form-wrap label {
    display: block;
    margin-bottom: 0.3em;
    color: #272927cc;
}

#password-lost-form-wrap input[type="email"],
#password-lost-form-wrap input[type="password"] {
    display: block;
    width: 100%;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-bottom: solid #27292775 1px;
    height: 2em;
    color: #272927cc;
    font-size: var(--fs-base);
    margin-bottom: 0.5em;
    transition: 0.5s;
}

#password-lost-form-wrap input:focus {
    outline: none;
    border-bottom-color: #427E9B;
    font-size: var(--fs-lg);
}

#password-lost-form-wrap p {
    margin-bottom: 1.2em;
}

#password-lost-form-wrap p.extra-space {
    margin-bottom: 1.5em;
    color: #555;
}

.lostpassword-submit {
    margin: 2rem 0;
    text-align: center;
}

.lostpassword-submit button {
    padding: 0.5em 2em;
    font-size: var(--fs-base);
    background-color: #427E9B;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    min-width: 130px;
}

.lostpassword-submit button:hover {
    background-color: #2e6080;
}

.som-password-sent-message {
    margin-bottom: 1.5em;
    padding: 15px;
    border: 2px solid #427E9B;
    border-radius: 4px;
    background-color: #427E9B;
    color: #fff;
    display: table;
    width: 100%;
}

.som-password-sent-message span {
    display: table-cell;
    vertical-align: middle;
}

.som-password-error-message {
    margin-bottom: 1.5em;
    padding: 12px 15px;
    border: 2px solid #bf3662;
    border-radius: 4px;
    background-color: #fde8ef;
    color: #bf3662;
}

.som-password-error-message a {
    color: #bf3662;
    font-weight: bold;
}

.connexionSuccess p {
    text-align: center;
    margin-top: 1em;
    font-size: var(--fs-md);
    color: #427E9B;
    margin-bottom: 18px;
}

@media screen and (max-width: 1000px) {
    #password-lost-form-wrap {
        width: 60vw;
    }
}

@media screen and (max-width: 600px) {
    #password-lost-form-wrap {
        width: 90vw;
    }
}
