::placeholder {
    color: #000000;
    opacity: 1;
  }
  
  ::-ms-input-placeholder { 
    color: red;
  }
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Body Styles */
  body {
    background-color: #EDEAEA;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .login-form, .signup-form {
    background-color: #1B1A17;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  }
  
  h3 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
  }
  
  #username,input[type="email"], input[type="password"], input[type="submit"], input[type="checkbox"] {
    width: 100%;
    padding: 14px 16px;
    margin: 12px 0;
    border: 1px solid #E6D5B8;
    border-radius: 8px;
    font-size: 16px;
    background-color: #E6D5B8;
    transition: border-color 0.3s;
    outline: none;
  }
  
  input[type="submit"] {

    cursor: pointer;
    border: 1px solid #ffffff;
    background-color: #000; color: #E6D5B8;
    transition: background-color 0.3s;
  }
  
  input[type="submit"]:hover {
    background-color: #E6D5B8;
    color: #000;
}
  
  label {
    font-size: 14px;
    color: #959494;
  }
  
  p {
    text-align: center;
    font-size: 14px;
    color: #555555;
    margin-top: 16px;
  }
  
  p a {
    color: #E6D5B8;
    text-decoration: none;
    font-weight: 500;
  }
  
  p a:hover {
    text-decoration: underline;
  }
  
  #close {
    font-size: 20px;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    color: #888888;
    transition: color 0.3s;
  }
  
  #close:hover {
    color: #555555;
  }
  
  input[type="checkbox"] {
    display: inline-block;
    margin-right: 12px;
    width: auto;
  }
  
  @media screen and (max-width: 768px) {
    .login-form, .signup-form {
      width: 90%;
      padding: 32px;
    }
  
    h3 {
      font-size: 24px;
    }
  
    input[type="submit"] {
      padding: 16px;
      font-size: 16px;
    }
  
    p {
      font-size: 13px;
    }
  
    label {
      font-size: 13px;
    }
  }