/* General Styles */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
  }
  
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Set minimum height for viewport coverage */
    background-color: #f0f8ff; /* Light blue background */
  }
  
  h1, h2, h3 {
    margin-bottom: 20px;
  }
  
  /* Sign Up Form Styles */
  .signup-form {
    background-color: #fff; /* White background for the form */
    border-radius: 5px; /* Add subtle rounded corners */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Add a slight shadow for depth */
    padding: 30px;
    width: 400px; /* Adjust form width as needed */
  }
  
  .signup-form p {
    margin-bottom: 15px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .form-group input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
  }
  
  .signup-form button {
    background-color: #337ab7; /* Blue button background */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
  }
  
  .signup-form button:hover {
    background-color: #286090; /* Darker blue on hover */
  }
  
  .signup-form a {
    color: #337ab7; /* Blue color for link */
  }
  