    body {
      font-family: Arial, sans-serif;
      margin: 20px;
    }
    label, input {
      margin-bottom: 10px;
    }

    <style>


    body {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background: #f5f7fa;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .form-container {
      background: #ffffff;
      padding: 2rem 3rem;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      max-width: 600px;
      width: 100%;
    }

    h2 {
      margin-bottom: 1.5rem;
      font-weight: 600;
      color: #333;
      text-align: center;
    }

    label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #555;
    }

    input,
    select,
    textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      margin-bottom: 1.25rem;
      font-size: 1rem;
      transition: border 0.3s ease;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: #6c63ff;
      outline: none;
    }

    button {
      width: 100%;
      padding: 0.75rem;
      background-color: #6c63ff;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    button:hover {
      background-color: #574fd6;
    }

        /* Resetting margin and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Body background and font setup */
/*        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
        }
*/

        /* Fancy menu container */
        .menu {
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #2c3e50;
            padding: 10px 0;
            position: relative;
        }

        /* Menu links style */
        .menu a {
            color: white;
            text-decoration: none;
            padding: 15px 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: block;
            transition: all 0.3s ease;
        }

        /* Hover effects for links */
        .menu a::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            background-color: #227aab;
            bottom: 0;
            left: 0;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform 0.25s ease-out;
        }

        .menu a:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .menu a:hover {
            color: white;
        }

        /* Fancy animation for dropdown (optional) */
        .menu a.dropdown:hover .dropdown-menu {
            display: block;
            animation: slideIn 0.3s ease-out;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 50px;
            background-color: #34495e;
            min-width: 160px;
            border-radius: 4px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            z-index: 100;
        }

        .dropdown-menu a {
            padding: 12px 20px;
            color: white;
            text-transform: none;
        }

        .dropdown-menu a:hover {
            background-color: #f39c12;
        }

        /* Animation for dropdown */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Add a little hover effect on the dropdown container */
        .dropdown {
            position: relative;
        }
    .form-wrapper {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
    }
