 body {
      background-color: #e6f0fa; /* bluish background */
      font-family: Arial, sans-serif;
      margin: 0; 
      padding: 0;
    }
    .form-container {
      background: white;
      max-width: 400px;
      margin: 40px auto;
      padding: 30px 25px;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(40,60,90,0.1);
      color: #111; /* black text */
    }
    .form-container h2 {
      text-align: center;
      margin-bottom: 15px;
    }
    label {
      display: block;
      margin: 12px 0 4px;
      font-weight: bold;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="date"], textarea, select {
      width: 100%;
      padding: 8px 10px;
      margin-bottom: 8px;
      border: 1px solid #b0c4de;
      border-radius: 5px;
      background: #f7fbff;
      color: #111;
      font-size: 15px;
      box-sizing: border-box;
    }
    textarea {
      resize: vertical;
      height: 60px;
    }
    button[type="submit"] {
      background: #5a97e6;
      color: white;
      padding: 10px 0;
      border: none;
      border-radius: 5px;
      font-size: 16px;
      width: 100%;
      cursor: pointer;
      margin-top: 10px;
      transition: 0.2s;
    }
    button[type="submit"]:hover {
      background: #357ac9;
    }