/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    text-align: center;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  /* Form Container */
  form {
    margin: 10px 0;
  }
  
  #login-form, #signup-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Input Styles */
  input[type="email"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    outline: none;
    font-size: 1rem;
  }
  
  /* Button Styles */
  button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    background-color: #2575fc;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background-color: #1a5fc2;
  }
  
  /* Links */
  a {
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
  }
  
  a:hover {
    text-decoration: none;
  }
  
  /* Message Box */
  #message {
    margin-top: 15px;
    font-weight: bold;
  }
  
