body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ff0000, #ff0000);
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 600px;
    background: white;
    margin: 50px auto;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
  }
  
  form label {
    display: block;
    margin-top: 15px;
    color: #555;
    font-weight: 500;
  }
  
  form input, form select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 2px solid #ccc;
    border-radius: 10px;
    outline: none;
    transition: border 0.3s;
  }
  
  form input:focus, form select:focus {
    border-color: #74ebd5;
  }
  
  button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #ff0000;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  button:hover {
    background: #000000;
  }
  