/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f0dfcd;
    color: #000;
    line-height: 1.6;
  }
  
  header {
    background-color: #d9b78d;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  header h1 {
    color: #fff;
    font-size: 1.5rem;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 4px;
  }
  
  nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #000;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  main {
    background-color: #fff;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
  }
  
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  fieldset {
    border: none;
    margin-bottom: 2rem;
  }
  
  legend {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="date"],
  select {
    width: 100%;
    padding: 0.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  input[type="radio"] {
    margin-right: 0.5rem;
  }
  
  button {
    background-color: #d9b78d;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  button:hover {
    background-color: #c4a776;
  }
  
  footer {
    background-color: #d9b78d;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
  }
  