
  /* Apply styling to the login container */
  .login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
  }
  
  h2 {
    text-align: center;
  }
  
  /* Style for form input fields */
  .input-group {
    margin-bottom: 15px;
  }
  
  label {
    display: block;
    margin-bottom: 6px;
  }
  
  input[type="email"],
  input[type="password"],
  input[type="submit"],
  input[type="text"] {
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
  }
  
  input[type="submit"] {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background-color: #45a049;
  }
  
  /* Style for authentication options (signup and forgot password) */
  .auth-options {
    text-align: center;
  }
  
  .auth-options a {
    text-decoration: none;
    color: #333;
  }
  
  .auth-options a:hover {
    text-decoration: underline;
    color: #000;
  }


/* Apply similar styles for the signup container */
.signup-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
  }
  
  
  
  