/* Base styling */
body {
    font-family: 'Segoe UI', sans-serif;
    background-image: linear-gradient(#13A64A, #004389);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  
  .container {
    background: #f7f7f7;
    padding: 2rem 2.5rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
  }
  
  h1 {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  form {
    display: flex;
    flex-direction: column;
  }
  
  label {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #333;
  }
  
  input[type="email"],
  input[type="password"],
  input[type="text"] {
    padding: 10px;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input:focus {
    border-color: #007bff;
    outline: none;
  }

  p {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
  }
  
  a {
    color: #007bff;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Flash messages */
  ul {
    padding: 0;
    list-style: none;
    margin-bottom: 1rem;
  }
  
  li {
    background-color: #ffe0e0;
    color: #b30000;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
  }
  