body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.header_connexion {
    background-image: url('/system/maintenance/img/img_maintenance_header.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav {
    display: flex;
    gap: 15px;
    color: white;
    background-color: #646995;
    height: 30px;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 8px;
}

nav a {
    text-decoration: none;
    color: #fff;
}

.nav_item{
    background-color: #1D1A31;
    width: 120px;
    padding: 10px;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;

    border: 2px solid transparent;
    box-sizing: border-box;
}

.nav_item.is-active{
    border: 2px solid #7F8BC7;
}

.nav_item a{
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    text-decoration: none;
}


.icon {
    height: 100px;
}

.container_connexion_maintenance {
    background-color: #272537;
    flex: 1;
    display: flex;
}

.container_left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30%;
    height: 80vh;
    padding: 30px;
}

.container_form {
    background-color: #1B1925;
    height: 450px;
    display: flex;
    flex-direction: column;
    color: #fff;
    gap: 20px;
    padding: 0px 30px 30px 30px;
    border-radius: 5px;
    box-shadow: 5px 5px #9084D9;
}

.container_form .title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.container_form img {
    height: 30px;
}

.container_form .inputs {
    display: flex;
    flex-direction: column;
}

.inputs input {
    height: 40px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: none;
    padding: 0 12px 0 40px;
    /* espace pour l’icône */
    font-size: 14px;
    outline: none;
}

/* Icônes */
.inputs input.user {
    background-image: url("/system/maintenance/img/icon_user.png");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 18px 18px;
    /* ajuste la taille */
}

.inputs input.pass {
    background-image: url("/system/maintenance/img/password.png");
    background-repeat: no-repeat;
    background-position: 12px center;
    background-size: 18px 18px;
}

.button_connection {
    height: 40px;
    background-color: #9084D9;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}


.bubble-bd {
    position: relative;
    height: 100px;
    padding: 14px 16px;
    background: #2f3144;
    color: #fff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

/* Queue de la bulle */
.bubble-bd::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 0;
    height: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #2f3144;
}

/* Titre */
.bubble-bd h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
    color: #e8ebff;
}

/* Texte */
.bubble-bd p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #d6d9ff;
}


.button_inscription {
    background-color: #2f3144;
    border: none;
    border-radius: 5px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}




.container_right {
    background-image: url("/system/maintenance/img/dx_night.png");
    background-repeat: no-repeat;
    background-position: right center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
}

.container_right_bloc {
    width: 100%;
}

.container_right_item {
    height: 100%;
    width: 450px;
    background-color: #1B1925;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 0 20px 0px 20px;
    ;
    border-radius: 5px;
    box-shadow: 3px 3px #9084D9;
}

.container_right_bloc .place {
    margin-left: 250px;
}

.container_right_bloc .gratuit {
    margin-left: 450px;
}


/********* FOOTER *******/

footer {
    width: 100%;
    height: 100px;
    background-color: #1D1A31;
    display: flex;
    padding: 70px;
    align-items: center;
    color: #fff;
    gap: 50px;
}

.footer_left img {
    height: 50px;
}