html {
    font-size: 16px;
}
body{
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#formation{
    margin: 100px 0 50px 0 ;
    width: 70%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#formation-img{
    border-radius: 25px;
    width: 40%;
}
#formation-txt{
    padding: 15.5px 0;
    border-radius: 25px;
    border: #008486 solid 3px;
    color: #008486;
    width: 56%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#title-formation{
    color: #008486;
    font-size: 2rem;
    text-align: center;
}
#info-list{
    margin: 0 10px;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}
.info{
    margin: 0 10px;
    color: #008486;
    font-weight: 600;
}
.txt-info-session{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}
.info-session{
    display: flex;
    align-items: center;
}
.logo-info{
    width: 30px;
    height: auto;
    margin-right: 10px;
}
#session-date{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
#title-session{
    margin: 0 15px;
    color: #008486;
    font-size: 1.7rem;
    font-weight: 600;
}
#date-session{
    margin: 15px 0;
    color: #008486;
    font-size: 2rem;
    font-weight: 700;
}
#docs-names{
    display: flex;
    flex-direction: column;
    align-items: center;
}
#button-register{
    border: none;
    width: 80%; 
    height: 60px;
    background-color: #008486;
    color: #fff;
    font-size: 2rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 20px;
}
#button-register:hover {
    transition-duration: 500ms;
    background-color: #00000036;
}
#container-formation{
    width: 70%;
    display: flex;
    justify-content: space-between;
}
#programme{
    border-radius: 25px;
    background-color: #008486;
    width: 48%;
    display: flex;
    align-items: center;
    flex-direction: column;
    height: max-content;
}
#programme-day{
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin:25px 20px 20px 20px;
}
#day{
    display: flex;
    align-items: center;
    margin: 10px;
}
.day-head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.img-day{
    margin: 20px 0 10px 0;
}
.title-section-purple{
    font-size: 1.3rem;
    margin:5px 0 0 0 ;
    color: #32008c;
}
.title-section-green{
    font-size: 1.3rem;
    margin:5px 0 0 0 ;
    color: #006c0a;
}
#title-programme{
    margin-top: 25px;
    font-size: 2.2rem;
    color: white;
    margin-bottom:0 ;
}
.title-day{
    margin: 20px 0 10px 0;
    font-size: 1.8rem;
    color: white;
    font-weight: 700;
}
.prg-day{
    color: white;
    margin: 0 20px 0 20px;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 30px;
}
#doctors-names{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#doc-name-2{
    margin: 5px;
}
#doc-name-1{
    margin: 5px;
}

#register{
    width: 48%;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: max-content;
}
#title-register{
    margin:25px 0 ;
    font-size: 2.2em;
    color: #008486;
    font-weight: 700;
}
.title-register{
    color: #008486;
    font-size: 1.5rem;
    font-weight: 600;
}
.register-line{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width:90%;
}
#input-register{
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.input-register {
    padding: 0 10px 0 10px ;
    border: 3px solid #008486;
    border-radius: 25px;
    width: calc(100% - 22px); 
    height: 40px;
    font-size: 1em;
    font-weight: 600;
}
#button-Submit {
    margin: 20px 0;
    border: none;
    width: 90%; 
    height: 50px;
    background-color: #008486 ;
    color: #fff;
    font-size: 1.8rem;
    border-radius: 25px;
    text-align: center;
}
#button-Submit:hover {
    transition-duration: 500ms;
    background-color: #00000036;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (max-width: 1460px) {
    
    html {
        font-size: 11px;
    }

    body{
        font-size: 1rem;
    }

    .input-register {
        height: 30px;
    }

    #button-Submit {
        height: 40px;
    }
    
}

@media screen and (max-width: 1200px) {
    
    html {
        font-size: 9px;
    }

    body{
        font-size: 1rem;
    }

    .input-register {
        height: 25px;
    }

    #button-Submit {
        height: 35px;
    }
    #info-list{
        flex-direction: column;
    }
    
}

@media screen and (max-width: 770px) {
    
    html {
        font-size: 10px;
    }
    #session-date{
        flex-direction: column;
    }

    body{
        font-size: 1rem;
    }

    .input-register {
        height: 30px;
    }

    #button-Submit {
        height: 40px;
    }
    #info-list{
        flex-direction: column;
    }
    #formation,
    #container-formation,
    #bottom-head{
        flex-direction: column;
        margin-bottom: 20px;
    }
    #formation-img ,
    #formation-txt,
    #programme,
    #register{
        width: 100%;
        justify-content: space-around;
    }
    #formation,
    #container-formation{
        width: 90%;
    }*
    #formation-img,
    #programme{
        margin-bottom:20px ;
    }
    #logo-loading{
        width: 70px;
        height: auto;
      }
    
}
#loadingSpinner {
        position: fixed; /* Position the loading spinner fixed to the viewport */
        top: 40vh; /* Position at the top of the viewport */
        background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
        border: 16px solid white;
        border-radius: 50%;
        width: 150px;
        animation: spin 5s linear infinite;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
  #resultContainer {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  #logo-loading{
    width: 150px;
    height: auto;
  }