
/*   login   */

#header .text-center.logo-login{
    border-bottom: 8px solid #d3f3ff;
    padding-top: 54px;
    padding-bottom: 30px;
}
.content-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: calc(100vh - 230px);
}
.content-login button.btn {
    font-size: 24px;
    background: #015daa;
    padding: 3px 30px;
    outline: none;
    font-weight: 400;
}
.content-login button.btn:hover {
    background: #43afde;
}
h3.title{
    font-size: 30px;
    margin-bottom: 47px;
    font-weight: 600;
    color: #015daa;
}
form .formulaire-login {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}
form .formulaire-login input{
    border-radius: 4px;
    border: 1px solid #015daa;
    width: 526px;
    font-size: 18px;
    outline: none;
    padding: 8px;
}
p.text{
    margin-top: 40px;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 400;
}
.btn-contact a {
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    background: #43afde;
    border-radius: 4px;
    padding: 8px 20px;
}
.btn-contact a:hover{
    background: #015daa;
}
#footer{
    border-top: 1px solid #015daa;
    padding-top: 5px;
}
footer {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    width: 100%;
}

/*  video  */
#header-video {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
}
#header-video .disconnect {
    position: absolute;
    top: 42px;
    right: 35px;
    border: none;
    padding: 0;
}
#header-video .disconnect a {
    font-size: 13px;
    border-radius: 4px;
    border: none !important;
    font-weight: 500;
    color: #fff;
    background: #015daa;
    padding: 3px 13px;
    outline: none;
    text-transform: uppercase;
    text-decoration: none;
}
#header-video .disconnect a:hover{
    background: #43afde;
}
#video .banner-inner {
    background: url("../img/banner-video.jpg") no-repeat;
    background-size: cover;
}
#video .title-banner .title {
    font-size: 40px;
    font-weight: 600;
    color: #fff;
    padding: 107px 0;
}
.content-video .row {
    max-width: 1072px;
    margin: 65px auto 22px;
}
.content-video .row .col-md-6 {
    margin-bottom: 36px;
}
.text-video p {
    color: #045bab;
    font-weight: 500;
    font-size: 15px;
}

@media (max-width: 767px) {
    #header {
        padding-top: 30px;
    }
    form .formulaire-login input {
        width: 354px;
    }
    .content-login {
        height: calc(100vh - 236px);
    }
    .content-login button.btn {
        font-size: 20px;
    }
    .btn-contact a {
        font-size: 19px;
    }
    #header-video {
        display: flex;
        justify-content: start;
        align-items: center;
        margin: 15px 0;
    }
    .btn.disconnect {
        position: absolute;
        top: 42px;
        right: 2px;
        border: none;
        padding: 0;
    }
    .btn.disconnect button {
        font-size: 8px;
        padding: 4px 8px;
    }
}

