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

    body, html {
      font-family: 'Inter', sans-serif;
      min-height: 100vh;
      background-color: #1D232A;

    }

    .container {
      display: flex;
      flex-direction: row;
      min-height: 950px;
      height: 100vh;
      width: 100%;
      position: relative;

    }

    .left-panel {
      background-color: #1D232A;
      width: 40%;
      padding: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .left-panel img.logo {
      width: 120px;
      position: absolute;
      top: 6.2rem;
      left: 6.2rem;
      user-select: none;

     
    }
    .right-panel img.logo2 {
      width: 50px;
      position: absolute;
      top: 1rem;
      left: 1rem;
      user-select: none;
      display: none;
    }

    .text-container h1 {
      color: white;
      font-size: 10rem;
      font-weight: 700;
      margin-bottom: 1rem;
      font-family: 'Sora', sans-serif;
      
    }

    .text-container p {
      font-weight: 100 ;
      color: white;
      font-size: 3.5rem;
      margin-bottom: 2rem;
      max-width: 100%;
    }

    .input-container {
      position: relative;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    input[type="text"] {
      padding: 0.75rem 2rem;
      border-radius: 10rem;
      border-style: solid;
      border-color: #3C424B;
      border-width: 2px;
      outline: none;
      min-width: 50px;
      width: 22.5rem;
      background-color: #3C424B;
      color: white;
      height: 5rem;
      font-size: 2.5rem;

      }

    button.start-btn {
      background-color: #007BFF;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      font-size: 2rem;
      cursor: pointer;
      min-width: 17rem;
      border-radius: 50px;
      height:5rem;
      margin-left: 24px;

    }
      .start-btn:hover {
        box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.65);
      }


    .right-panel {
      width: 80%;
      position: relative;
      background-image: url('../pictures/background.webp');
      background-size: cover;
      background-position: center;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .login {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      color: white;
      font-size: 1.3rem;
      text-decoration: none;
      font-weight: 500;
      user-select: none;

    }
    .login:hover{
      text-shadow: 2px 2px 10px #000000;
    }
    .copyright {
      position: absolute;
      bottom: 1rem;
      right: 2rem;
      color: white;
      font-size: 0.8rem;
      user-select: none;

    }
      .text-container {
      /*background-color: grey;*/
      position: absolute;
      z-index: 1;
      margin: auto;
      width: 70%;
      margin-top:17%;
      padding-left: 4%;
      user-select: none;
      

    }
    .footer {
      position: absolute;
      width: 100%;
      height: 60px;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .footer div a {
      cursor: pointer;
      color: white;
      text-decoration: none;
      user-select: none;
    }
    .footer div a:hover {
      text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
    }

    .account {
      position: absolute;
      top: 1.5rem;
      right: 2rem;
      user-select: none;
    }
    .account a {
      color:white;
      font-size: 1.5rem;
      text-decoration: none;

    }
    .account:hover {
      text-shadow: 2px 2px 10px #000000;
    }
    /* The alert message box */
.alert {
  display: none;
  padding: 20px;
  background-color: #DC2626; /* Red | #16A34A - success*/
  color: white;
  margin-bottom: 15px;
  border-radius: 15px;
  position: fixed;
  z-index: 1;
  width: 70%;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
}

/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #F7F8FD;
  color: #0D1732;
  border: 1px solid #E0DBD8;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  font-size: 0.95rem;
}
#cookie-banner {
  display: none;
}

.cookie-banner a {
  color: #0473FF;
  text-decoration: underline;
}

.cookie-button {
  background-color:#0D1732;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-button:hover {
  background-color: #0059cc;
}

.suggestion-box {
  min-height: 35px;
  background: transparent;
  border: 1px solid #ccc;
  overflow-y: auto;
  position: absolute;
  width: 22.5rem;
  top: 83px;
  z-index: 99;
  color: white;
  border-radius: 25px;
}

.suggestion-item {
  padding: 8px 12px;
  cursor: pointer;
}

/*.suggestion-item:hover {
}*/
.suggestion-item.disabled {
  background-color: #f9f9f9;
  font-style: italic;
}





.suggestion-item:hover,
.suggestion-item.active {
  font-weight: bold;
}



    @media(max-width:1826px){
      
      .text-container h1 {
        font-size: 8.5rem;
      }
      .text-container p {
        font-size: 2.6rem;
      }
      input[type="text"] {
        height: 4rem;
        width: 20rem;
      
      }
      .suggestion-box {
        width: 20rem;
        top: 68px;
      }
      button.start-btn {
        height: 4rem;
        min-width: 15rem;

      }
   
    }


    @media (max-width: 1503px) {
      .text-container h1 {
        font-size: 7rem;
      }
      .text-container p {
        font-size: 2.4rem;
      }
      .left-panel img.logo {
        width: 90px;
      }
      
      input[type="text"] {
        height: 3.2rem;
        width: 17rem;
        font-size: 1.8rem;
      
      }
      .suggestion-box {
        width: 17rem;
        top: 54px;
      }
      button.start-btn {
        height: 3.2rem;
        min-width: 12rem;
        padding: 0.5rem 1rem;
        font-size: 1.7rem;

      }
 
    }
     @media(max-width:1251px){
       .left-panel img.logo {
        width: 80px;
        top: 3.5rem;
        left: 3.5rem;
      }
      
      .text-container h1 {
        font-size: 6rem;
      }
      .text-container p {
        font-size: 2.1rem;
      }
      input[type="text"] {
        height: 3rem;
        width: 15rem;
        font-size: 1.8rem;
      
      }
      .suggestion-box {
        width: 15rem;
        top: 50px;
      }
      button.start-btn {
        height: 3rem;
        min-width: 10rem;
        padding: 0.5rem 1rem;
        font-size: 1.6rem;
        margin-left: 15px;

      }
    }

    @media (max-width: 900px){
      .footer {
        bottom: 50px;
      }
    }


    @media (max-width: 768px) {
      .text-container {
        width: 90%;
        margin-top: 250px;
      }
      .left-panel{
        display: none;
      }   
      .right-panel img.logo2 {
        display: block;
      }

      .right-panel {
        width: 100%;
        height: auto;
      }

      .left-panel {
        padding: 2rem;
      }

      .text-container h1 {
        font-size: 5rem;
        text-shadow: 2px 2px 10px #000000;
      }

      .text-container p {
        font-size: 1.8rem;
        text-shadow: 2px 2px 10px #000000;

      }

      .login {
        position: static;
        text-align: right;
        margin: 1rem;
      }

      .copyright {
        position: static;
        text-align: center;
        margin: 1rem auto;
      }
      .left-panel img.logo {
        width: 70px;
      }
      .left-panel img.logo:hover {
        width: 71px;
      }
      input[type="text"] {
        height: 2.6rem;
        width: 13rem;
        font-size: 1.6rem;
      }
      .suggestion-box {
        width: 13rem;
        top: 41px;
      }
      button.start-btn {
        height: 2.6rem;
        min-width: 8rem;
        padding: 0.5rem 1rem;
        font-size: 1.4rem;
        margin-left: 15px;

      }
    }
    @media (max-width: 427px){
      button.start-btn {
        margin-left: 0px;
      }
    }

@media(max-width: 430px) {
  .footer {
  flex-direction: column;
  bottom: 130px;
  }
  .container {
    min-height: 1400px;
  }
  
}
