/* General Page Styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  
  /* Navigation Bar */
  nav {
    background-color: #2c3e50;
    padding: 10px 0;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  
  nav ul li {
    margin: 0 15px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #34495e;
    color: #1abc9c;
    border-radius: 5px;
  }
  
  /* Main Content */
  h1, h2 {
    text-align: center;
    margin-top: 20px;
    color: #2c3e50;
  }
  
  p {
    text-align: center;
    font-size: 18px;
  }
  
  /* Container for Forms and Content */
  .container {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }
  
  /* Form Styles */
  form {
    display: flex;
    flex-direction: column;
  }
  
  form label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
  }
  
  form input[type="text"],
  form input[type="email"],
  form input[type="password"],
  form textarea,
  form button {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  form input[type="text"]:focus,
  form input[type="email"]:focus,
  form input[type="password"]:focus,
  form textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 5px rgba(26, 188, 156, 0.5);
  }
  
  /* Button Styles */
  button {
    background-color: #1abc9c;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 18px;
    padding: 12px;
    transition: background-color 0.3s;
  }
  
  button:hover {
    background-color: #16a085;
  }
  
  /* Links */
  a {
    color: #1abc9c;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Success and Error Messages */
  .message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
  }
  
  .message.success {
    background-color: #dff0d8;
    color: #3c763d;
  }
  
  .message.error {
    background-color: #f2dede;
    color: #a94442;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 10px;
    background-color: #2c3e50;
    color: white;
    position: fixed;
    bottom: 0;
    width: 100%;
  }
  
  /* Responsive Design */
  @media (max-width: 600px) {
    nav ul {
      flex-direction: column;
    }
  
    nav ul li {
      margin: 10px 0;
    }
  
    .container {
      width: 90%;
    }
  }
  
  