/*=============== VARIABLES CSS ===============*/
:root {
    --iller-color: #BE000D;
    --footer-color: #292929;
    --font-color: #1f1f1f;
    --title-fontsize: 48px;
    --big-fontsize: 24px;
    --normal-fontsize: 16px;
    --small-fontsize: 10px;
    --font-family: "Roboto", sans-serif;
    --box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    position: relative;
    min-height: 100vh;
}

body {
    font-family: var(--font-family);
    background-color: #ebebeb;
}

/*________________________________________LOGIN________________________________________ */

#container {
    background-color: white;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    border-radius: 10px;
    display: grid;
    grid-template-columns: repeat(2, 50%);
    box-shadow: var(--box-shadow);
    transition-duration: 1s;
  }
  
  #left, #right {
    margin: auto;
    width: 95%;
    height: 96%;
    border-radius: 10px;
    align-content: center;
  }
  
  #left {
    background-size: cover;
    background-position: center;
    box-shadow: var(--box-shadow);
    filter: grayscale(20%);
  }

  #login {
    text-align: center;
    text-transform: uppercase;
    font-weight: 100;
    text-shadow: var(--box-shadow); 
  }
  .client-info {
    display: block;
    margin: 20px auto;
    width: 80%;
    height: 50px;
    border: solid #000000 1px;
    border-radius: 5px;
    text-indent: 15px;
    transition: all 200ms;
    box-shadow: var(--box-shadow);
  }

  label {
    position: absolute;
    margin: -76px 90px;
    font-size: 12px;
    white-space: nowrap;
    background: #fff;
    padding: 0 5px;
    color: #999;
    transition: all 200ms;
    text-shadow: var(--box-shadow);
  }

  #email_form{
    display: none;
  }
 
  .submit {
    border: none;
    background-color: var(--iller-color);
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    width: 80%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .submit:hover {
    background-color: #d33742;
    transform: translateY(3px);
  }

  .input-return {
    background-color: #999;
  }

  #fortgot_password {
    text-align : center;
    font-size: 14px;
    cursor: pointer;
  }

  #fortgot_password:hover {
    text-align : center;
    text-decoration: underline;
    font-size: 14px;
    cursor: pointer;
  }

  #error-msg{
    text-align : center;
    padding-top: 20px;
    color: var(--iller-color);
  }

  @media (max-width: 850px) {
    #container {
        display: block;
        width: 100vw;
        height: 100vh;
      }

    #left{
        display: none ;
    }

    #right{
        width: 100% ;
    }

    label{margin: -76px 50px;}
    
}



/*________________________________________INSTALL_______________________________________ */

#installApp {
    display: none; /* Le bouton est caché par défaut */
    padding: 12px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 30px;
}
    
#installApp:hover {
    background-color: #0056b3;
}
    
#installApp:active {
    background-color: #004080;
}
    
    /* Centrage horizontal en utilisant Flexbox */
#installAppContainer {
    display: flex; /* Utilise Flexbox pour ce conteneur */
    justify-content: center; /* Centre les éléments horizontalement */
    align-items: center; /* Centre les éléments verticalement si nécessaire */
    width: 100%;
}