/* +--------------------------------------------------------------------------+
// ? 2002-2013 PMB Services / www.sigb.net pmb@sigb.net et contributeurs (voir www.sigb.net)
// +-------------------------------------------------+
// $Id: mfa.css,v 1.1.4.2 2025/10/17 14:02:54 dgoron Exp $ */

/* ======================================================================== */
/* MFA POPUP                                                                */
/* ======================================================================== */

#mfa-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.44)
}

#mfa-popup form {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #dcdcdc;
    padding: 2rem;
    border: 1px solid #bebebe;
    border-radius: 0.4rem;
    width: 440px;
    height: 305px;
}

#mfa-popup form #btn_send_mail,
#mfa-popup form #btn_send_sms {
    margin-bottom: 1rem;
}

#mfa-popup form span#mfa-notify.success {
    font-weight: 400;
    color: rgb(5, 167, 0);
}

#mfa-popup form span#mfa-notify.error {
    font-weight: 400;
    color: rgb(213, 30, 30);
}

#mfa-popup form .form-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    bottom: 0;
}

#mfa-popup form .code-send {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

#mfa-popup form>div {
    display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    position: relative;
}

#mfa-popup form h3 {
    margin-bottom: 2rem;
}

#mfa-popup form p {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

#mfa-popup form input[type="text"] {
    height: 40px;
    text-align: center;
}