.body{
    background-color: #fcfcfd;
    font-size: 62.5%;
    font-family:"Inter";
    font-style: normal;
    font-weight: 400;
    font-size: 13px;
    font-size: 1.3rem;/*for browsers dont support rem*/
    line-height: 26px;
}

.sign_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: left;
    padding: 80px 32px;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    color: #193c4e;
    font-family: Roboto;
}


.sign_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
    justify-content: flex-start;
    gap: 20px;
    border:1px solid #DEDEDE;
    border-radius: 8px;
    padding:40px;
}


.sign_header{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 30px;
    font-family: Inter;
}

.sign_logo{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.sign_logo_image{
    position: relative;
    width: 129.28px;
    height: 38px;
    overflow: hidden;
    flex-shrink: 0;
}


.sign_header_label{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sign_title{
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
}


.sign_subtitle{
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #475467;
}


.sign_content{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    align-items: center;
    gap: 24px;
    color: #344054;
    width:330px;
}


.form{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.form_group,
.form_group_input{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    justify-content: flex-start;
    gap: 8px;
}

.form_group_input2{
    width: 95%;
}

.form_label{
    position: relative;
    line-height: 20px;
    font-weight: 500;
}


.form_input{
    position: relative;
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #475467;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    padding: 10px 14px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: Roboto;
}

.form_input::placeholder{
    color: #667085;
}

.form_input:focus{
    outline: none;
    border: 1px solid #8ED0B5;
    box-shadow: 0 0 0 4px #DFFBF0;
}


.form_erreur_image{
    position: absolute;
    top: 70%;
    right: 5px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: none;
}


.form_erreur{
    align-self: stretch;
    position: relative;
    line-height: 20px;
    color: #f04438;
    display: none;
}



.form_check_group{
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.hidden{display: none}

.form_check_input{
    position: relative;
    cursor: pointer;
    box-sizing: border-box;
    width: 16px;
    border-radius: 4px;
    height: 16px;
    flex-shrink: 0;
}

.form_check_input::before{
    content: "\2714";
    display: block;
    position: absolute;
    top: 50%;
    width: 95%;
    height: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 400;
    text-align: center;
    line-height: 16px;
    border-radius: 4px;
    opacity: 0;
    color: #61EBB4;
    background-color: #f9f5ff;
    border: 2px solid #61EBB4;
}

.form_group .invalid{
    border: 1px solid #fda29b;
}

.form_group .valid{
    border: 1px solid #61EBB4;
}


.form_check_input:checked::before{
    opacity: 1;
}

.form_check_label{
    align-self: stretch;
    position: relative;
    line-height: 20px;
    color: #475467;
}

.form_check_label a{
    text-decoration: underline;
    color: #1890ff;
}


body .button_form{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
    width:100%;
}

body .button_primary{
    align-self: stretch;
    border-radius: 8px;
    background-color: #419D78;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #419D78;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Inter;
    gap:22px;
    color: #fff;
    height: 44px;
    font-weight: 600;
    cursor: pointer;
}


.button_form .disabled{
    background-color: #bbe3d3;
    border:1px solid #bbe3d3;
    cursor: default;
}

.google_button{
    display: flex;
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    box-shadow:  0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #d0d5dd;
    overflow: hidden;
    flex-direction: row;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #344054;
    cursor: pointer;
}

.google_image{
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.google_label{
    position: relative;
    font-family: Inter;
    line-height: 24px;
    font-weight: 600;
}


.sign_footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    gap: 4px;
    color: #475467;
}


.sign_footer_label{
    position: relative;
    line-height: 20px;
}

.sign_footer a{
    position: relative;
    line-height: 20px;
    font-weight: 600;
    color: #2E6E54;
    text-decoration: none;
}

.wwwkatappultcloud-2023 {
    margin-top: 100px;
    line-height: 20px;
    color: #667085;
}

.password_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: left;
    padding: 80px 32px;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    color: #193c4e;
    font-family: Roboto;
}


.password_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
    justify-content: flex-start;
    gap: 20px;
    border:1px solid #DEDEDE;
    padding:40px;
    border-radius: 8px;
}


.password_header{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 30px;
    font-family: Inter;
}

.password_logo{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.password_logo_image{
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}


.password_header_label{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.password_title{
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
}


.password_subtitle{
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #475467;
}


.password_content{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    align-items: center;
    gap: 24px;
    color: #344054;
    width:100%
}


body .form{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

body .form_group,
body .form_group_input{
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    justify-content: flex-start;
    gap: 8px;
}

body .ui-messages{
    width:100%;
}

.form_label{
    position: relative;
    line-height: 20px;
    font-weight: 500;
}


body .form_input{
    position: relative;
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #475467;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    padding: 10px 14px;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 16px;
    font-family: Roboto;
    min-width: 330px;
}

body .form_input_inherit{
    max-width:60px!important;
    min-width:60px!important;
    width:60px!important;
}

body .form_input::placeholder{
    color: #667085;
}

body .form_input:focus{
    outline: none;
    border: 1px solid #8ED0B5;
    box-shadow: 0 0 0 4px #DFFBF0;
}


.form_erreur_image{
    position: absolute;
    top: 70%;
    right: 5px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: none;
}


.form_erreur{
    align-self: stretch;
    position: relative;
    line-height: 20px;
    color: #f04438;
    display: none;
}



.form_group .invalid{
    border: 1px solid #fda29b;
}

.form_group .valid{
    border: 1px solid #61EBB4;
}





.progress_wrapper{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.progress{
    align-self: stretch;
    position: relative;
    border-radius: 8px;
    height: 8px;
}

.background{
    position: absolute;
    top: 0;
    left: 0;
    border-radius:4px;
    height: 8px;
    width: 100%;
    right: 0;
    background-color: #eaecf0;
}

.bar{
    position: absolute;
    top: 0;
    left: 0;
    border-radius:4px;
    height: 8px;
    width: 0;
    right: 240px;
    transition: all 0.5s;
}

.progress .weak{
    width: 20%;
    background-color: #f04438;
    transition: all 0.5s;
}


.progress .strong{
    width: 100%;
    background-color: #419D78;
    transition: all 0.5s;
}


.progress_label{
    position: relative;
    line-height: 20px;
    font-weight: 500;
}

.check_wrapper{
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    color: #475467;
    align-self: stretch;
    display: flex;
    justify-content: flex-start;
}

.check{
    align-self: stretch;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
}

.check_logo{
    position: relative;
    border-radius: 10px;
    width: 20px;
    height: 20px;
    overflow: hidden;
    flex-shrink: 0;
}

.check_label{
    flex: 1;
    position: relative;
    line-height: 20px;
}


.button_form{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.button_primary{
    align-self: stretch;
    border-radius: 8px;
    background-color: #419D78;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #419D78;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: Inter;
    color: #fff;
    height: 44px;
    font-weight: 600;
    cursor: pointer;
}

.button_form .disabled{
    background-color: #bbe3d3;
    border:1px solid #bbe3d3;
    cursor: default;
}




.retour_button{
    display: flex;
    align-self: stretch;
    background-color: #fff;
    overflow: hidden;
    flex-direction: row;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.retour_image{
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.retour_label{
    position: relative;
    font-family: Inter;
    color: #475467;
    line-height: 24px;
    font-weight: 600;
}

.login_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: left;
    padding: 80px 32px;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    color: #193c4e;
    font-family: Roboto;
}


.login_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
    justify-content: flex-start;
    gap: 30px;
    border:1px solid #DEDEDE;
    padding:40px;
    border-radius: 8px;
}


.login_header{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 30px;
    font-family: Inter;
}

.login_logo{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.login_logo_image{
    position: relative;
    width: 129.28px;
    height: 38px;
    overflow: hidden;
    flex-shrink: 0;
}


.login_header_label{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login_title{
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
}



.login_content{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    align-items: center;
    gap: 24px;
    color: #344054;
}



.button_forgot{
    align-self: stretch;
    display: flex;
    overflow: hidden;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.forgot_link{
    text-decoration: none;
    color: #344054;
    position: relative;
    line-height: 20px;
    font-weight: 600;
}


.google_button{
    display: flex;
    align-self: stretch;
    border-radius: 8px;
    background-color: #fff;
    box-shadow:  0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 1px solid #d0d5dd;
    overflow: hidden;
    flex-direction: row;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #344054;
    cursor: pointer;
}

.google_image{
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.google_label{
    position: relative;
    font-family: Inter;
    line-height: 24px;
    font-weight: 600;
}


.login_footer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-self: stretch;
    align-items: flex-start;
    gap: 4px;
    color: #475467;
}


.login_footer_label{
    position: relative;
    line-height: 20px;
}

.login_footer a{
    position: relative;
    line-height: 20px;
    font-weight: 600;
    color: #2E6E54;
    text-decoration: none;
}

.wwwkatappultcloud-2023 {
    margin-top: 100px;
    line-height: 20px;
    color: #667085;
}

.forgot_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: left;
    padding: 80px 32px;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    color: #193c4e;
    font-family: Roboto;
}


.forgot_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 430px;
    justify-content: flex-start;
    gap: 32px;
    border:1px solid #DEDEDE;
    border-radius: 8px;
    padding:40px;
}


.forgot_header{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 30px;
    font-family: Inter;
}

.forgot_logo{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.forgot_logo_image{
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}


.forgot_header_label{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.forgot_title{
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
}


.forgot_subtitle{
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #475467;
}


.forgot_content{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 12px;
    align-items: center;
    gap: 24px;
    color: #344054;
}


body .form_group .invalid{
    border: 1px solid #fda29b;
}

body .form_group .valid{
    border: 1px solid #61EBB4;
}



.retour_button{
    display: flex;
    align-self: stretch;
    background-color: #fff;
    overflow: hidden;
    flex-direction: row;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.retour_image{
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.retour_label{
    position: relative;
    font-family: Inter;
    color: #475467;
    line-height: 24px;
    font-weight: 600;
}

.checked_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    text-align: left;
    padding: 80px 32px;
    box-sizing: border-box;
    justify-content: center;
    font-size: 14px;
    color: #193c4e;
    font-family: Roboto;
}


.checked_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    border:1px solid #DEDEDE;
    border-radius: 8px;
    padding:40px;
}


.checked_header{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    text-align: center;
    font-size: 30px;
    font-family: Inter;
}

.checked_logo{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.checked_logo_image{
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}


.checked_header_label{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checked_title{
    align-self: stretch;
    position: relative;
    line-height: 140%;
    font-weight: 600;
    font-size: 24px;
}


.checked_subtitle{
    align-self: stretch;
    position: relative;
    font-size: 16px;
    line-height: 150%;
    color: #475467;
}

.checked_subtitle a{
    position: relative;
    line-height: 20px;
    font-weight: 600;
    color: #193c4e;
    text-decoration: none;
}


.checked_content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #344054;
}


.input_list{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    gap: 8px;
    text-align: center;
}


.input_list input{
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border: 2px solid #214f3c;
    box-sizing: border-box;
    width: 64px;
    font-size: 48px;
    color: #214f3c;
    height: 64px;
    overflow: hidden;
    text-align: center;
}

.input_large{
    min-width: 100%!important;
    max-width: 100%!important;
    width: 100%!important;
}

.form_check_input{
    transform: scale(1.5);
}

.ui-password{
    width:100%;
}


.checked_body{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 330px;
    gap: 20px;
}




.button_form{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}

.button_form_checked{
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 32px;
}


.retour_button{
    display: flex;
    align-self: stretch;
    background-color: #fff;
    overflow: hidden;
    flex-direction: row;
    padding: 10px 16px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.retour_image{
    position: relative;
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.retour_label{
    position: relative;
    font-family: Inter;
    color: #475467;
    line-height: 24px;
    font-weight: 600;
}

.checked_label{
    align-self: stretch;
    position: relative;
    font-size: 15px;
}

.ui-messages-error-icon{
    display:none;
}

.checked_body_label{
    display: flex;
    flex-direction: row;
    justify-content: center;
    font-family: Inter;
    align-self: stretch;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    line-height: 20px;
}

.checked_body_label a{
    font-weight: 600;
    color: #2E6E54;
    text-decoration: none;
}


.login-or-separator{
    display: flex;
    flex-direction: row;
}
.login-or-separator{
    width: 100%;
}
.login-or-separator:before, .login-or-separator:after{
    content: "";
    flex: 1 1;
    border-bottom: 1px solid #BDBDBD;
    margin: auto;
}

.login-or-separator:before {
    margin-right: 10px
}
.login-or-separator:after {
    margin-left: 10px
}

.copy_right{
    font-family: 'Roboto';
}

@media (max-width:426px) {
    .checked_wrapper{
        width: 100%;
    }

    .checked_title{
        font-size: 24px;
    }

    .checked_subtitle{
        font-size:14px ;
    }
}


@media (max-width:426px) {
    .forgot_wrapper{
        width: 100%;
    }

    .forgot_title{
        font-size: 24px;
    }

    .forgot_subtitle{
        font-size:14px ;
    }
}


@media (max-width:426px) {
    .login_wrapper{
        width: 100%;
        border-color: transparent;
        padding:10px;
    }

    .login_title{
        font-size: 24px;
    }

}

.ui-messages-error-summary{
    color: red;
    font-weight:bold;
    font-size: 12px;
}

.ui-messages-error li{
    color: red;
    font-size: 12px;
}

.ui-message-error-detail{
    color: red;
}


@media (max-width:426px) {
    .password_wrapper{
        width: 100%;
    }

    .password_title{
        font-size: 24px;
    }

    .password_subtitle{
        font-size:14px ;
    }
}



@media (max-width:426px) {
    .sign_wrapper{
        width: 100%;
    }

    .sign_title{
        font-size: 24px;
    }

    .sign_subtitle{
        font-size:14px ;
    }
}