@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Reset CSS */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  

  /* Base CSS */

  body {
    background-color: #f5f5f5;
    font-family: 'Montserrat', sans-serif;
  }

.container {
    display: flex;
    height: calc(100vh - 20px);
    margin: 10px;
  }
  


  .left-section {
    background-size: cover;
    width: 66.66%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px 0 0 10px;
    padding: 1rem;
    position: relative;
    
  }
  .background-container {
    background: url("../img/camion.jpg" );
    background-size: cover;
    opacity: 0.25;
    border-radius: 10px 0 0 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }
   
  .left-section h1 {
    color: #222;
    font-size: 3rem;
    margin-bottom: 1rem;
    z-index: 2;
  }
  
  .left-section img {
    width: 100px;
    margin-bottom: 1rem;
    z-index: 3;
  }

  .logo-container {
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4;
  }
  
  .right-section {
    width: 33.33%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    border-radius: 0 10px 10px 0;
    background-color: #f5f5f5;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); */
    height: 100%;
    background: #fff;
  }
  
  .right-section-resset-pw {
    width: 33.33%;
    padding:20px;
    display: flex;
    justify-content: center;
    height: 100%;
    background: #fff;
    align-items: center;
    align-content: stretch;
    flex-wrap: nowrap;
    flex-direction: column;
  }

  .form-pw-container{
    max-width: 80%;
  }

  .form-pw-container input{
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
    width: 100%;
  }

  .form-container {
    max-width: 400px;
    width: 100%;
  }
  
  .form-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #222;
  }
  
  .input-container {
    margin-bottom: 1rem;
  }
  
  .input-container input {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.2rem;
    width: 100%;
  }
  
  .forgot-password {
    text-align: right;
    margin-bottom: 1rem;
  }
  
  .forgot-password a {
    color: #777;
    text-decoration: none;
    font-size: 0.8rem;
  }
  
  .button-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .con_bt {
    display: block;
    padding: 10px;
    background-color: #ffffff;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: black;
}

.con_bt:hover {
    background-color: #e5e5e5;
}
  
/* Media queries */
@media only screen and (max-width: 768px) {
    .container {
      flex-direction: column;
      height: auto;
    }
    
    .left-section {
      width: 100%;
      border-radius: 10px 10px 0 0;
    }
    
    .right-section {
      width: 100%;
      border-radius: 0 0 10px 10px;
    }
  }
  
  @media only screen and (max-width: 576px) {
    .left-section h1 {
      font-size: 2rem;
    }
    
    .left-section img {
      width: 80px;
    }
    
    .form-container h2 {
      font-size: 1.5rem;
    }
    
    .input-container input {
      font-size: 1rem;
    }
    
    button {
      font-size: 1rem;
    }
  }
  