.form-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 650px;
}
    .checkbox-container {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-family: sans-serif;
    }

    .checkbox-wrapper {
      display: flex;
      align-items: center;
      height: 20px;
    }

    .checkbox-wrapper input[type="checkbox"] {
      width: 16px;
      height: 16px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background-color: #f0f0f0;
      accent-color: #1fbd2d; /* fallback for modern browsers */
    }

    .checkbox-label {
      font-size: 14px;
      color: #999;
    }

    .checkbox-label a {
      font-weight: 500;
      color: #1fbd2d;
      text-decoration: none;
    }

    .checkbox-label a:hover {
      text-decoration: underline;
    }
.reset-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.form-signup{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #ffffff;
    padding: 30px;
    width: 450px;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  .danger {
    color: red;
    font-weight: bold;
}
  ::placeholder {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .form button {
    align-self: flex-end;
  }
  
  .flex-column > label {
    color: #151717;
    font-weight: 600;
  }
  .login{
    font-size: 28px;
    font-weight:bold;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .reset{
    font-size: 28px;
    font-weight:bold;
    justify-content: center;
    align-items: center;
    display: flex;
    margin-bottom: 40px;
    margin-top: 20px;
  }
  .inputForm {
    border: 1.5px solid #ecedec;
    border-radius: 10px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 10px;
    transition: 0.2s ease-in-out;
  }
  .inputForm img {
    width: 25px;
  }
  .input {
    margin-left: 10px;
    border-radius: 10px;
    border: none;
    width: 85%;
    height: 90%;
  }
  .toggle-icon {
    cursor: pointer;
    fill: black;
    transition: fill 0.3s ease;
  } 
  .toggle-icon.active {
    fill: green;
  }
  .p a{
    text-decoration: none;
  }
  .p a:hover {
    color: #1fbd2d; /* Change to white on hover */
    transition: color 0.3s ease; /* Smooth transition effect */
}

  .input:focus {
    outline: none;
  }
  
  .inputForm:focus-within {
    border: 1.5px solid #1fbd2d;
  }
  
  .flex-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
  }
  
  .flex-row > div > label {
    font-size: 14px;
    color: black;
    font-weight: 400;
  }
  
  .span {
    font-size: 14px;
    margin-left: 5px;
    color: #1fbd2d;
    font-weight: 500;
    cursor: pointer;
  }
  
  .button-submit {
    margin: 20px 0 10px 0;
    background-color: #151717;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    height: 50px;
    width: 100%;
    cursor: pointer;
  }
  
  .button-submit:hover {
    background-color: #252727;
  }
  
  .p {
    text-align: center;
    color: black;
    font-size: 14px;
    margin: 5px 0;
  }
  
  .btn {
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    border: 1px solid #ededef;
    background-color: white;
    cursor: pointer;
    transition: 0.2s ease-in-out;
  }
  
  .btn:hover {
    border: 1px solid #1fbd2d;
    ;
  }
  @media (min-width: 769px) and (max-width: 1024px) {
    .form-container{
      height: 700px !important;
    }
    
    .reset-container{
      height: 600px;
    }
  }
  
  @media (max-width: 768px) {
    .form-container{
      height: 700px !important ;
    }
    
    .reset-container{
      height: 600px;
    }
    .form {
      width: 300px;
    }
  }
  @media (max-width: 560px) {
    .form-container{
      height: 750px !important ;
    }
    
    .reset-container{
      height: 750px;
    }
  }
  