.container {
    display: flex;
    width: 80%;
  }
  .login,
  .create {
    padding: 40px;
    width: 50%;
  }
  .auth-section {
    display: flex;
    justify-content: center;
  }
  .login {
    border-right: 1px solid #ccc;
  }
  .login,
  .create {
    padding: 40px;
    width: 50%;
  }
  main {
    margin-bottom: 10vh;
  }
  h2 a {
    color: black;
    text-decoration: none;
    font-weight: bold;
  }
  
  h2 {
    margin-bottom: 20px;
  }
  
  p {
    font-size: 14px;
    margin-bottom: 20px;
  }
  li {
    font-size: small;
  }
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  
  input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  button {
    padding: 10px;
    border: none;
    background-color: #333;
    color: white;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #555;
  }
  
  .show {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  .show label {
    display: flex;
    align-items: center;
    margin-left: 5px;
  }
  .forgot {
    font-size: 12px;
    margin-top: -10px;
    color: #007bff;
    text-decoration: none;
  }
  
  .forgot:hover {
    text-decoration: underline;
  }
  
  .login-btn {
    margin-top: 10px;
  }
  
  .createaccount-section ul {
    margin-bottom: 20px;
  }
  
  .create li {
    margin-bottom: 10px;
  }
  
  .create-btn {
    background-color: #000;
  }
  .error{
    color: red;
    font-size: 13px;
    margin-bottom: 10px;
    margin-top: 5px;
}
.input{
    margin-bottom: 5px;
}
.show label{
    margin-bottom: 0;
}
.btn-submit{
    margin-top: 8px;
}
  @media (max-width: 768px) {
    .container {
      flex-direction: column; /* Stack sections on top of each other */
      width: 90%;
    }
    .login,
    .create {
      width: 100%;
      border: none; /* Remove the border when stacked */
      padding: 20px;
    }
    .login {
      border-bottom: 1px solid #ccc; /* Add a bottom border to separate sections */
    }
  }
  