body {
    background-color: #fffbea;
    padding: 2rem;
    margin: 0;
  }
  
  h1 {
    text-align: center;
  }

  h2 {
    text-align: center;
    color: #DA291C;
  }
  
  form {
    max-width: 400px;
    margin: 2rem auto;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  label {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  button {
    margin-top: 1.5rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #DA291C;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #b71c1c;
  }
  
  a {
    color: #DA291C;
    text-decoration: none;
    font-weight: bold;
    display: block;
    margin-top: 1rem;
    text-align: center;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  .error {
    color: red;
    margin-top: 1rem;
    text-align: center;
  }
  
  .success {
    color: green;
    margin-top: 1rem;
    text-align: center;
  }
  
  .language-switcher {
    display: flex;
    justify-content: center;
    & select {
      max-width: 400px;
    }
  }