body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    overflow: hidden;    
}

img {
    max-width: unset !important;
}

.login-form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 60%;
}

.login-form {
    z-index: 10;
    width: 50%;
    max-width: 500px;
    min-width: 400px;
    padding: 20px;
    border-radius: 25px;
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    background-color: white;
}

.login-form-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 20px;
    padding: 20px;
}

.login-form-header h2 {
    font-size: 2em;
    font-weight: 400;
}

.login-form-logo {
    width: 60%;
    height: auto;   
    user-select: none;
}


.login-form-body {
    display: flex;
    flex-direction: column;
    width: 80%;
}

.login-form-body-title {
    font-size: 1.5em;
    font-weight: 400;
    color: var(--primary-color);
    text-align: center;
}

.login-form-body-link {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.login-form-body-link:hover {
    color: var(--primarylight-color);
}

.login-form-body-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.login-form-footer {
    border-top: 1px solid lightgray;
    padding-top: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 60%;
    gap: 10px;
}


.login-image-container {
    width: 40%;
    height: 100vh;
    background: rgb(0,136,203);
    background: linear-gradient(90deg, rgb(0, 136, 203) 0%, rgba(49,177,224,1) 27%, rgba(0,203,239,1) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-image {
    width: 600px;
    height: auto;
    object-fit: cover;
    z-index: 10;
    user-select: none;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.1em;
}

.inputGroup input[type="password"] {
    padding-right: 35px;
}

.login-separator {
    position: absolute;
    top: 0;
    right: 39.9%;
    width: auto;
    height: 100%;
    transform: scaleX(-1);
}

@media screen and (max-width: 1280px) {
    .login-image {
        width: 400px;
    }
}

@media screen and (max-width: 1024px) {
    
    body {
         background: rgb(0,136,203);
        background: linear-gradient(90deg, rgb(0, 136, 203) 0%, rgba(49,177,224,1) 27%, rgba(0,203,239,1) 100%);
    }

    .login-image-container {
        display: none;
    }

    .login-form-container {
        width: 100%;      
    }
    
    .login-form {
        width: 80%;
        background-color: white;  
    }

    .login-separator,
    .login-separator-reverse {
        display: none;
    }
}

.login-form-footer-img {
    width: 24px;
    height: 24px;
}

p {
    text-align: center;
}
div {
    text-align: center;
}

.pybtn2 {
  display: inline-block;
  padding: 12px 24px;
  background-color: #15C0E9; 
  color: #ffffff; /* Texte blanc */
  text-decoration: none; /* Supprime le soulignement du lien */
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px; /* Coins arrondis pour un aspect doux */
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre légère pour la profondeur */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.pybtn2:hover {
  background-color: #0056b3; /* Bleu plus foncé au survol */
  transform: translateY(-2px); /* Effet de "soulèvement" */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Ombre plus prononcée */
}

.pybtn2:active {
  transform: translateY(0); /* Retour à la position normale au clic */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}