html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

ul {
    margin-bottom : 0 !important;
    color: #5a9075;
    font-size: 18px;
    list-style-type: none;
}

/*---------------------------------------
    NOTIFICATION
-----------------------------------------*/

.in-front {
    z-index: 1;
}

/*---------------------------------------
    GENERAL
-----------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600');

html {
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

#page {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg {
    position: fixed;
    /*background: url("../../../images/besins/fond.jpg") center center/cover no-repeat;*/
    background-color: #c1cbc7;
    width: 100%;
    height: 100vh;
    opacity: 80%;
    top: 0;
    left: 0;
}

#login .container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    min-width: 1500px;
    margin-top: 50px;
    margin-bottom: 50px;
}

#login .afs {
    min-height: 1700px;
}

@media screen and (max-width: 1500px) {

    #login .afs {
        min-height: 1700px;
    }
}

@media screen and (max-width: 1200px) {

    #login .afs {
        min-height: 2000px;
    }
}





#login .form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all 0.6s ease-in-out;
}

#login .sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
}

#login .container.right-panel-active .sign-in-container {
    transform: translateX(100%);
}

#login .sign-up-container {
    left: 0;
    width: 50%;
    opacity: 0;
    z-index: 1;
}

#login .container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
    animation: show 0.6s;
}

#login @keyframes show {

           0%,
           49.99% {
               opacity: 0;
               z-index: 1;
           }

           50%,
           100% {
               opacity: 1;
               z-index: 5;
           }
       }

#login .overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s ease-in-out;
    z-index: 100;
}

#login .container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

#login .overlay {
    background: #a6d3e3;
    background: -webkit-linear-gradient(to right, #a6d3e3, #5a9075);
    background: linear-gradient(to right, #a6d3e3, #5a9075);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 0 0;
    color: #FFFFFF;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

#login .container.right-panel-active .overlay {
    transform: translateX(50%);
}

#login .overlay-panel {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    top: 0;
    height: 100%;
    width: 50%;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}

#login .overlay-left {
    transform: translateX(-20%);
}

#login .container.right-panel-active .overlay-left {
    transform: translateX(0);
}

#login .overlay-right {
    right: 0;
    transform: translateX(0);
}

#login .overlay-right p {
    font-size: 36px;
}

#login .overlay-right h2 {
    font-size: 58px;
}

#login .container.right-panel-active .overlay-right {
    transform: translateX(20%);
}

#login button {
    border-radius: 20px;
    border: 1px solid #a6d3e3;
    background-color: #0e72bf;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

#login .calendar-button {
    margin-top: 20px;
    border-radius: 20px;
    background-color: #FFFFFF;
    border: 1px solid #000000;
    color: #000000;
    font-size: 12px;
    font-weight: 500;
    padding: 12px 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

#login .dropdown-menu {
    transform: translateX(-50%);
}

#login .dropdown-item:hover {
    cursor: pointer;
    background-color: #e7e7e7 !important;
}

#login .dropdown-item {
    border-radius: 0 !important;
    border: none !important;
    background-color: white !important;
    color: black !important;
    font-size: 14px !important;
    font-weight: normal !important;
    padding: 12px 45px !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
}

#login button:active {
    transform: scale(0.95);
}

#login button:focus {
    outline: none;
}

#login button.ghost {
    background-color: transparent;
    border-color: #FFFFFF;
}

#login form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

#login input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

#login form div {
    width: 100%;
}

#login select {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

#login .main-content {
    margin: 50px;
}

#login .myImg {
    width: 175px;
    height: 175px;
}


#login .myFormImg {
    position: absolute;
    top: 50px; /* ajuste si nécessaire */
    left: 50%;
    transform: translateX(-50%);
    width: 175px;
    height: 175px;
    z-index: 10;
}



@media screen and (max-width: 1500px) {
    #login .container {
        background-color: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
        0 10px 10px rgba(0, 0, 0, 0.22);
        position: relative;
        overflow: hidden;
        width: 120vh;
        min-width: 500px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    #login .douleur-endometriose {
        min-height: 1250px;
    }

    #login .period-pain {
        min-height: 1400px;
    }

    #login .recurrent-vaginal-mycoses {
        min-height: 1300px;
    }

    #login .myImg {
        width: 150px;
        height: 150px;
    }
    #login .myFormImg {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 1200px) {
    #login .main-content {
        font-size: 10px;
    }

    #login .myImg {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 992px) {
    #login .sign-up-container {
        width: 100%;
        opacity: 1;
    }

    #login .form-container {
        position: relative;
    }
}

.mobile {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
    0 10px 10px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
    min-height: 1250px;
    margin-top: 50px;
    margin-bottom: 50px;
}


/* ==========================================================================
#Mobile
========================================================================== */

.page-wrapper {
    min-height: 100vh;
}

.p-t-100 {
    padding-top: 50px;
}

.p-t-20 {
    padding-top: 20px;
}

.p-b-100 {
    padding-bottom: 50px;
}

.wrapper {
    margin: 0 auto;
}

.wrapper--w680 {
    max-width: 680px;
}

/* ==========================================================================
#TITLE
========================================================================== */
.title {
    margin-bottom: 37px;
}

/* ==========================================================================
#CARD
========================================================================== */
.card {
    /*overflow: hidden;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 15px;
    background: #fff;
}

.card-1 {
    padding: 30px;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.card-1 .card-heading {
    background: url("../../../images/besins/besins.jpg") center center/cover no-repeat;
    padding-top: 210px;
    background-size: 80%;
}

.card-1 .card-body {
    padding: 0 90px;
    padding-bottom: 65px;
}

@media (max-width: 767px) {
    .card-1 .card-body {
        padding: 0 40px;
        padding-bottom: 40px;
    }
}

.textInput
{
    padding: 10px;
}

.programme {
    width: 100%;
}

.programme h2 {
    text-align: center;
    color: #2a5e4c;
    margin-bottom: 10px;
}

.event {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding-block: 10px;
    border-top: 1px solid #ff9900;
    position: relative;
}

.time {
    width: 25%;
    font-weight: bold;
    color: #2a5e4c;
    position: relative;
    padding-right: 15px;
    text-align: right;
    font-size: 16px
}

.mobile-only {
    display: none;
}
.desktop-only {
    display: inline;
}

.time span {
    font-size: 20px
}

.time::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    height: 80%;
    width: 1px;
    background-color: #ff9900;
}

.description {
    width: 65%;
    padding-left: 15px;
    font-size: 17px;
    color: #5a9075;
}

@media (max-width: 1500px) {
    .time {
        width: 30%;
    }
}

@media (max-width: 1200px) and (min-width: 993px) {
    .event {
        flex-direction: column;
        gap: 5px;
    }

    .time {
        width: 100%;
        text-align: center;
        padding-right: 0;
        padding-bottom: 5px;
    }

    .time::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        right: auto;
        width: 100%;
        height: 0;
    }

    .description {
        width: 100%;
        padding-left: 0;
        padding-top: 5px;
    }
    .mobile-only {
        display: inline;
    }

    .desktop-only {
        display: none;
    }
}


@media (max-width: 600px) {
    .event {
        flex-direction: column;
        gap: 5px;
    }

    .time {
        width: 100%;
        text-align: center;
        padding-right: 0;
        padding-bottom: 5px;
    }

    .time::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        top: auto;
        right: auto;
        width: 100%;
        height: 0;
    }

    .description {
        width: 100%;
        padding-left: 0;
        padding-top: 5px;
    }
    .mobile-only {
        display: inline;
    }

    .desktop-only {
        display: none;
    }
}

@media (max-width: 575px) {

    .description {
        text-align:center;
    }
}

.logos-1 {
    position: absolute;
    left: 50%;
    top: 600px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    z-index: 150;
    width: 600px;
}

.logos-2 {
    position: absolute;
    left: 50%;
    top: 700px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    z-index: 150;
    width: 600px;
}

.logos-3 {
    position: absolute;
    left: 50%;
    top: 780px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    z-index: 150;
    width: 600px;
}


.logos-1 img {
    width: 183px;
    height: 40px;
    object-fit: contain;
}

.logos-2 img {
    width: 200px;
    height: 45px;
    object-fit: contain;
}

.logos-3 img {
    padding-top: 20px;
    height: 50px;
    width: 200px;
    object-fit: contain;
}

.logos-3 > img:nth-of-type(3) {
    padding-top: 0 !important;
    height: 70px;
}

.bienvenue {
    position: absolute;
    left: 50%;
    top: 200px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    z-index: 150;
    width: 400px;
    flex-direction: column;
}

.titre {
    position: absolute;
    left: 50%;
    top: 530px;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 10px;
    z-index: 150;
    width: 400px;
    flex-direction: column;
}


@media (max-width: 1500px) and (min-width: 993px) {
    .logos-1 {
        width: 450px;
    }

    .logos-2 {
        width: 450px;
    }

    .logos-3 {
        width: 450px;
    }

    .logos-1 img {
        width: 150px;
        height: 40px;
        object-fit: contain;
    }

    .logos-2 img {
        width: 150px;
        height: 45px;
        object-fit: contain;
    }

    .logos-3 img {
        padding-top: 20px;
        height: 50px;
        width: 150px;
        object-fit: contain;
    }
}

@media (max-width: 992px) {

    .logos-1 {
        position: relative;
        text-align: center;
        top: 0;
        width: fit-content;

    }

    .logos-2 {
        position: relative;
        text-align: center;
        top: 0;
        width: fit-content;

    }

    .logos-3 {
        position: relative;
        text-align: center;
        top: 0;
        width: fit-content;
    }

    .titre {
        position: relative;
        text-align: center;
        top: 0;
    }
    .bienvenue {
        position: relative;
        text-align: center;
        top: 0;
    }
}
