body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 2rem;
  }
  
  /* Headings and Paragraphs */
  h1, h2, h3, h4, h5, h6 {
    color: #004080;
    margin-bottom: 0.5em;
  }
  
  p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1em;
  }
  
  /* Form Container */
  form {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: auto;
  }
  
  /* Labels */
  label {
    display: block;
    margin-bottom: 0.5em;
    font-weight: bold;
    color: #004080;
  }
  
  /* Inputs, Textareas, Selects */
  input[type="text"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="file"],
  input[type="date"],
  textarea,
  select {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
    background-color: #fff;
    transition: border-color 0.3s ease;
  }
  
  input:focus,
  textarea:focus,
  select:focus {
    border-color: #ff6600;
    outline: none;
  }
  
  /* Checkboxes and Radios */
  input[type="checkbox"],
  input[type="radio"] {
    margin-right: 0.5em;
  }
  
  /* Buttons */
  button,
  input[type="submit"],
  input[type="reset"] {
    background-color: #ff6600;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  button:hover,
  input[type="submit"]:hover,
  input[type="reset"]:hover {
    background-color: #e65c00;
  }
  
  /* Secondary Button */
  .button-secondary {
    background-color: #004080;
  }
  
  .button-secondary:hover {
    background-color: #003366;
  }
  
  /* File Input Styling */
  input[type="file"] {
    padding: 0.5rem;
    background-color: #eef;
    border: 1px dashed #004080;
  }
  
  /* Responsive Layout */
  @media (max-width: 600px) {
    form {
      padding: 1rem;
    }
  }

  .top-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 12px 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

.logo img {
      width: 100px;
      height: auto;
    }

    .login-body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .login-container {
      width: 400px;
      margin: 30px auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .login-title {
      text-align: center;
      margin-bottom: 20px;
      color: #333333;
    }

    .login-label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #555555;
    }

    .login-input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #cccccc;
      border-radius: 4px;
    }

    .login-button {
      width: 100%;
      padding: 12px;
      background-color: #007BFF;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 10px;
    }

    .login-button:hover {
      background-color: #0056b3;
    }

    .login-register-link {
      text-align: center;
      font-size: 14px;
    }

    .login-register-link a {
      color: #007BFF;
      text-decoration: none;
    }

    .login-register-link a:hover {
      text-decoration: underline;
    }

    .reg-body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f4;
      margin: 0;
      padding: 0;
    }

    .reg-container {
      width: 400px;
      margin: 60px auto;
      background-color: #ffffff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    .reg-title {
      text-align: center;
      margin-bottom: 20px;
      color: #333333;
    }

    .reg-label {
      display: block;
      margin-bottom: 8px;
      font-weight: bold;
      color: #555555;
    }
    .reg-label-checkbox {
      margin-bottom: 8px;
      font-weight: bold;
      color: #555555;
    }

    .reg-input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #cccccc;
      border-radius: 4px;
    }

    .reg-checkbox-container {
      margin-bottom: 20px;
      font-size: 14px;
      color: #333333;
    }

    .reg-checkbox-container input {
      margin-right: 8px;
    }

    .reg-checkbox-container a {
      color: #007BFF;
      text-decoration: none;
    }

    .reg-checkbox-container a:hover {
      text-decoration: underline;
    }

    .reg-button {
      width: 100%;
      padding: 12px;
      background-color: #007BFF;
      color: #ffffff;
      border: none;
      border-radius: 4px;
      font-size: 16px;
      cursor: pointer;
      margin-bottom: 10px;
    }

    .reg-button:hover {
      background-color: #0056b3;
    }

    .reg-login-link {
      text-align: center;
      font-size: 14px;
    }

    .reg-login-link a {
      color: #007BFF;
      text-decoration: none;
    }

    .reg-login-link a:hover {
      text-decoration: underline;
    }

    #messageBar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 12px 20px;
      color: white;
      font-weight: bold;
      text-align: center;
      z-index: 9999;
      transition: all 0.3s ease;
    }
    #messageBar.success {
      background-color: #28a745; /* Green */
    }
    #messageBar.error {
      background-color: #dc3545; /* Red */
    }
    #messageBar.warning {
      background-color: #ffc107; /* Yellow */
    }
    #messageBar.info {
      background-color: #17a2b8; /* Blue */
    }