/* css/styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f2f2f2;
    color: #333;
  }
  
  h1 {
    margin-top: 20px;
    font-size: 24px;
    color: #4CAF50;
  }
  
  form {
    margin-top: 20px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  label {
    margin-top: 10px;
    display: block;
  }
  
  input, select, button {
    margin-top: 5px;
    width: 100%;
    padding: 8px;
    font-size: 16px;
  }
  
  button {
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 15px;
  }
  
  button:hover {
    background-color: #45a049;
  }
  