body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(to right, #FC8F54, #764ba2);
    margin: 0;
    padding: 0;
    color: #fff;
  }
  
  .container {
    max-width: 500px;
    margin: 4rem auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
  }
  
  h1 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  form input,
  form select,
  form textarea,
  form button {
    width: 100%;
    padding: 0.75rem;
    margin: 10px 0;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  form button {
    background-color: #FC8F54;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  form button:hover {
    background-color: #d9713c;
  }
  