/*--------------------------------------------------
    [Variable]
----------------------------------------------------*/
:root {
    --orange: #FF4117;
    --white: #FFFFFF;
}

/*--------------------------------------------------
    [TRANSITION]
----------------------------------------------------*/
.split {
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.split.left {
    background-color: white;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split.right {
    background-image: url("../../img/login_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 97%;
    border-radius: 12px;
    z-index: 10;
    overflow: hidden;
    display: none;
}

.radiobox{
 margin:0 !important
}

.annonce {
    min-height: 100vh;
    background: linear-gradient(355.16deg, #000000 3.9%, rgba(0, 0, 0, 0.485068) 46.14%, rgba(0, 0, 0, 0) 96.1%), #08104D;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.annonce::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50%;
    right: 0;

    background-image: url("../../../../files/img/shape_login.png");
    background-position-x: 20%;
    background-position-y: top;
    background-repeat: no-repeat;

    background-attachment: local;
    background-size: 250%;

    overflow: hidden;

    mix-blend-mode: overlay;
    opacity: 0.7;
}

.annonce h1 {
    z-index: 1;
    color: var(--orange);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 800;
    margin-top: 40px;
    font-size: 20px;
}

.annonce h2 {
    z-index: 1;
    margin-top: 0px;
    font-style: normal;
    font-weight: 700;
    font-size: 26px;

    max-width: 700px;
    text-align: center;
    color: var(--white);
}

.annonce p {
    z-index: 1;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    max-width: 370px;
    text-align: center;
    color: var(--white);
}

.annonce_prix {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.annonce_prix_plus {
    z-index: 1;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 140%;
    color: var(--orange);
    margin: 0px 10px;
}

.annonce_prix_card {
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: var(--orange) 3px solid;
    width: 300px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 0px 5px;
}


.annonce_prix_card_header {
    z-index: 10;
    color: var(--orange);
    font-style: normal;
    font-weight: 700;
    font-size: 26px;
    line-height: 90%;
    margin: 10px;
}

.annonce p.annonce_prix_card_text {
    color: var(--white);
    font-style: italic;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    margin-top: 0px;
}

.annonce_button {
    margin-top: 30px;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    line-height: 120%;
    display:inline-block;
    width: 220px;
    height: 70px;

    background-color: var(--orange);
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    outline: none !important;
    border: none !important;
    border-radius: 10px;
    background-image: none !important;
    filter: none;
    box-shadow: none;
    text-shadow: none;
}

.annonce_button:hover {
    /*color: #fff;*/
    /*background-color: #00247e;*/
    transform: scale(1.01);
    filter: drop-shadow(0px 4px 25px var(--orange));
}

.annonce_button:active {
    transform: scale(0.98);
}

.annonce p.annonce_end {
    font-style: italic;
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
    color: var(--white);
}

@media screen and (min-width: 900px) {

    .login .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: unset !important;

        box-shadow: none !important;
    }

    .annonce_mouse_mobile {
        display: none;
    }

    .split {
        height: 100%;
        width: 50%;
    }

    .split.left {
        position: absolute;
        left: 0;
        z-index: 10;
    }

    .split.right {
        position: absolute;
        right: 0;
        visibility: unset;
        display: flex;
    }

    .annonce{
        justify-content: center;
    }

    .annonce::before {
        height: 100%;
        background-image: url("../../../../files/img/shape_login.png");
        background-position-x: 20%;
        background-position-y: 50%;
        background-repeat: no-repeat;

        background-attachment: fixed;
        background-size: 150%;
    }

    .annonce h1 {
        margin-top: -40px;
        font-size: 24px;
    }

    .annonce h2 {
        font-size: 35px;
        max-width: 600px;
    }

    .annonce p {
        font-size: 18px;
        line-height: 140%;
        max-width: 400px;
    }

    .annonce_prix {
        flex-direction: column;
    }

    .annonce_prix_plus {
        font-size: 75px;
        line-height: 80%;
    }

    .annonce_prix_card {
        width: 250px;
    }

    .annonce_prix_card_header {
        font-size: 50px;
    }

    .annonce p.annonce_prix_card_text {
        font-size: 20px;
    }

    .annonce_button {
        margin-top: 30px;
        margin-bottom: 20px;
        font-size: 20px;
        width: 350px;
        height: 80px;
        border-radius: 10px;
    }

    .annonce p.annonce_end {
        font-size: 16px;
    }

}

@media screen and (min-width: 1220px) {

    .login .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: unset !important;

        box-shadow: 0px 19px 60px rgb(0 0 0 / 7%) !important;
    }

    .annonce::before {
        background-image: url("../../../../files/img/shape_login.png");
        background-position-x: 120%;
        background-position-y: 90%;
        background-repeat: no-repeat;

        background-attachment: fixed;
        background-size: 80%;
    }

    .annonce h1 {
        margin-top: 60px;
        font-size: 24px;
    }

    .annonce h2 {
        font-size: 45px;
        max-width: 600px;
    }

    .annonce p {
        font-size: 20px;
        line-height: 140%;
        max-width: 600px;
    }

    .annonce_prix {
        flex-direction: row;
    }

    .annonce_prix_plus {
        font-size: 75px;
    }

    .annonce_prix_card {
        width: 250px;
    }

    .annonce_prix_card_header {
        font-size: 50px;
    }

    .annonce p.annonce_prix_card_text {
        font-size: 20px;
    }

    .annonce p.annonce_prix_card_text.no_width {
        width: 120px;
    }

    .annonce_button {
        margin-top: 70px;
        margin-bottom: 20px;
        font-size: 20px;
        width: 350px;
        height: 80px;
        border-radius: 10px;
    }

    .annonce p.annonce_end {
        font-size: 16px;
    }

}

@media screen and (min-width: 1440px) {
    .annonce h1 {
        margin-top: 60px;
        font-size: 28px;
    }

    .annonce h2 {
        font-size: 54px;
        max-width: 700px;
    }

    .annonce p {
        font-size: 22px;
        line-height: 140%;
        max-width: 700px;
    }

    .annonce_prix_plus {
        font-size: 85px;
    }

    .annonce_prix_card {
        width: 300px;
    }

    .annonce_prix_card_header {
        font-size: 60px;
    }

    .annonce p.annonce_prix_card_text {
        font-size: 22px;
    }

    .annonce_button {
        margin-top: 70px;
        margin-bottom: 20px;
        font-size: 24px;
        width: 380px;
        height: 90px;
        /*border-radius: 15px;*/
    }

    .annonce p.annonce_end {
        font-size: 20px;
    }
}


@media screen and (min-width: 1920px) {
    .annonce::before {
        background-image: url("../../../../files/img/shape_login.png");
        background-position-x: 120%;
        background-position-y: center;
        background-repeat: no-repeat;

        background-attachment: fixed;
        background-size: 60%;
    }
}

/* Custom glassmorphism effect */
.glassmorphism-card {
    background: linear-gradient(43.87deg, rgba(0, 255, 251, 0.3) 4.46%, rgba(0, 63, 218, 0.3) 53.29%, rgba(255, 255, 255, 0) 97.9%);
    filter: drop-shadow(8px 10px 100px #06217E);
    backdrop-filter: blur(10px);
}

/* Cubic Bezier Transition */
/***
Login page
***/
/* bg color */
.login {
    background-color: #FFFFFF !important;
    /*background:*/
    /*        url("../../../../files/img/vertuoza_logo_perspective.png")*/
    /*        110% 40% / 50%*/
    /*        no-repeat*/
    /*        fixed*/
    /*        content-box;*/
    /*height:100vh;*/
    /*width: 100vw;*/
    /*overflow: hidden;*/
    display: flex;
    /*flex-direction: column-reverse;*/
    flex-direction: column;

}

/*.login::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  width: 100%;*/
/*  height: 120%;*/
/*  background:*/
/*          url("../../../../files/img/vertuoza_logo_perspective.png")*/
/*          110% 45% / 50%*/
/*          no-repeat*/
/*          fixed*/
/*          content-box;*/
/*  transform: rotate(4.06deg);*/
/*  overflow: hidden;*/
/*}*/

.logo img{
    width: 100%;
    max-width: 250px;
    margin-bottom: 70px;
}

.login .enquete{
    width:auto;
    color : #0E1F80;
    margin: 0 auto;
    padding : 5px;
    text-align:center;
}

.login .content {
    /* background-color: #eceef1; */

    /*height: 100vh;*/
    max-width: 500px;
    min-width: 400px;
    width: 100%;

    margin: 0 auto;
    padding: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 19px 60px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
}

.login .content h4 {
    color: #555;
}

.login .content .hint {
    color: #999;
    padding: 0;
    margin: 15px 0 7px 0;
}

.login .content .login-form,
.login .content .forget-form {
    font-family: Montserrat, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 300px;
    width: 100%;
    padding: 0 30px;
}

.btn_login {
    margin-top: 10px;
    background: #003FDA;
    font-weight: 600;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .15rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 13px 26px;
    font-size: 14px;
    outline: none !important;
    border: none !important;
    border-radius: 8px;
    background-image: none !important;
    filter: none;
    box-shadow: none;
    text-shadow: none;
}

.btn_login_admin {
    margin-left: 0 !important;
    margin-top: 10px;
    background: white;
    font-weight: 600;
    display: inline-block;
    color: #374051;
    border: 1px solid #d1d5db;
    text-transform: uppercase;
    letter-spacing: .15rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 13px 26px;
    font-size: 14px;
    outline: none !important;
    border-radius: 8px;
    background-image: none !important;
    filter: none;
    box-shadow: none;
    text-shadow: none;
}

.btn_login_admin:hover {
    background-color: #e5e7eb;
}

.btn_login:hover {
    color: #fff;
    background-color: #00247e;
}

/*.btn_login:after {*/
/*   content: '';*/
/*   position: absolute;*/
/*   bottom: 0;*/
/*   left: 0;*/
/*   width: 100%;*/
/*   height: 100%;*/
/*   background-color: #003FDA;*/
/*   border-radius: 4px;*/
/*   z-index: -2;*/
/*}*/

/*.btn_login:before {*/
/*   content: '';*/
/*   position: absolute;*/
/*   bottom: 0;*/
/*   left: 0;*/
/*   width: 0;*/
/*   height: 100%;*/
/*   background-color: #00247e;*/
/*   !*background-color: #b6005b;*!*/
/*   transition: all .3s;*/
/*   border-radius: 4px;*/
/*   z-index: -1;*/
/* }*/

/*.btn_login:hover {*/
/*   color: #fff;*/
/*}*/

/*.btn_login:hover:before {*/
/*   width: 100%;*/
/*}*/

.btn_login:active {
    transform: scale(0.95);
}

.form-group .control-label{
    color: #000000;
    line-height: 24px;
}

.form-group .control-label.label-login {
    font-size: 14px !important;
}


.login .content .form-control {
    background-color: #EBF0FF;
    height: 43px;
    color: #000000;
    border: 1px solid #dde3ec;
    border-radius: 4px;
}
.login .content .form-control:focus, .login .content .form-control:active {
    border: 1px solid #c3ccda;
}
.login .content .form-control::-moz-placeholder {
    color: #8290a3;
    opacity: 1;
}
.login .content .form-control:-ms-input-placeholder {
    color: #8290a3;
}
.login .content .form-control::-webkit-input-placeholder {
    color: #8290a3;
}

.login .content select.form-control {
    padding-left: 9px;
    padding-right: 9px;
}

.login .content .forget-form {
    display: none;
}

.login .content .register-form {
    display: none;
}

.login .content .form-title {
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    margin-top: -70px;
    margin-bottom: 25px;
    font-size: 35px;
    color: #00123D;
}

.login_compte {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-evenly
}

.login .content .form-actions {
    clear: both;
    border: 0px;
    /* border-bottom: 1px solid #eee; */
    padding: 0px 30px 25px 30px;
    margin-left: -30px;
    margin-right: -30px;
}

.login-options {
    margin-bottom: 30px;
    overflow: hidden;
}

.login-options h4 {
    float: left;
    font-weight: 600;
    font-size: 15px;
    color: #7d91aa !important;
}

.login-options .social-icons {
    float: right;
    padding-top: 3px;
}

.login-options .social-icons li a {
    border-radius: 15px 15px 15px 15px !important;
    -moz-border-radius: 15px 15px 15px 15px !important;
    -webkit-border-radius: 15px 15px 15px 15px !important;
}

.login .content .form-actions .checkbox {
    margin-left: 0;
    padding-left: 0;
}

.login .content .forget-form .form-actions {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 20px;
}

.login .content .register-form .form-actions {
    border: 0;
    margin-bottom: 0;
    padding-bottom: 0px;
}

.login .content .form-actions .btn {
    margin-top: 1px;
}

.login .content .form-actions .btn-success {
    font-weight: 600;
    padding: 10px 20px !important;
}

.login .content .form-actions .btn-default {
    font-weight: 600;
    padding: 10px 25px !important;
    color: #6c7a8d;
    background-color: #ffffff;
    border: none;
}

.login .content .form-actions .btn-default:hover {
    background-color: #fafaff;
    color: #45b6af;
}

.login .content .forget-password {
    font-size: 14px;
    float: right;
    display: inline-block;
    margin-top: 10px;
}

.login .content .check {
    color: #8290a3;
}

.login .content .rememberme {
    margin-left: 8px;
    margin-top: 10px;
}

.login .content .create-account {
    margin: 0 -40px -40px -40px;
    padding: 15px 0 17px 0;
    text-align: center;
    background-color: #6c7a8d;
    -webkit-border-radius: 0 0 7px 7px;
    -moz-border-radius: 0 0 7px 7px;
    -ms-border-radius: 0 0 7px 7px;
    -o-border-radius: 0 0 7px 7px;
    border-radius: 0 0 7px 7px;
}

.login .content .create-account p a {
    font-weight: 600;
    font-size: 14px;
    color: #c3cedd;
}

.login .content .create-account a {
    display: inline-block;
    margin-top: 5px;
}

.login .copyright {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    color: rgba(0, 0, 0, 0.2);
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.03em;
}

@media (max-width: 440px) {
    /***
    Login page
    ***/
    .login .logo {
        margin-top: 10px;
    }

    .login .content {
        width: 280px;
        margin-top: 10px;
        padding: 10px;
    }

    .login .content .form-title {
        margin-top: -60px;
    }

    .login .content h3 {
        font-size: 22px;
    }

    .forget-password {
        display: inline-block;
        margin-top: 20px;
    }

    .login-options .social-icons {
        float: left;
        padding-top: 3px;
    }

    .login .checkbox {
        font-size: 13px;
    }
}
