body {
    background-color: #eef2f7;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  .form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 500px;
  }
  
  input, textarea {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  button {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #0099ff;
    color: white;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0077cc;
  }
  