    body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to right, #6dd5ed, #2193b0);
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    .form-container {
      background-color: #f3e8ff;  
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      width: 90%;
      max-width: 700px;
      animation: slideIn 0.7s ease-in-out;
    }

    @keyframes slideIn {
      from {
        transform: translateY(-40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    h2 {
      text-align: center;
      color: orange;
      margin-bottom: 25px;
    }

    .form-group {
      margin-bottom: 18px;
      position: relative;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-weight: 600;
      color: #444;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="number"],
    select,
    textarea {
      width: 80%;
      padding: 10px;
      border-radius: 8px;
      border: 2px solid #ccc;
      transition: 0.3s;
      font-size: 15px;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: #007bff;
      outline: none;
    }

    textarea {
      resize: none;
    }

    input[type="file"] {
      border: none;
      font-size: 15px;
    }

    .gender-options {
      display: flex;
      gap: 15px;
    }

    .gender-options label {
      font-weight: normal;
      margin-top: 5px;
    }

    .buttons {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
    }

    button {
      width: 48%;
      padding: 12px;
      font-size: 16px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .submit-btn {
      background-color: #28a745;
      color: #fff;
    }

    .submit-btn:hover {
      background-color: #218838;
    }

    .reset-btn {
      background-color: #dc3545;
      color: #fff;
    }

    .reset-btn:hover {
      background-color: #c82333;
    }

    @media (max-width: 600px) {
      .buttons {
        flex-direction: column;
      }

      .buttons button {
        width: 100%;
        margin-bottom: 10px;
      }
    }
