/* Adjust the width and maximum length of the form fields */
        input[type="date"],
        input[type="number"],
        input[type="text"],
        select {
            width: 200px;
            max-width: 100%;
        }

        body {
            background-color: #f9f9f9;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
        }

   	.fancy-button {
        display: inline-block;
        padding: 10px 20px;
        background-color: #ff8c00;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s;
        margin-top: 20px;
        }

        .fancy-button2 {
        display: inline-block;
        padding: 10px 20px;
        background-color: #03bafc;
        color: #fff;
        border-radius: 30px;
        text-decoration: none;
        font-size: 16px;
        transition: background-color 0.3s;
        margin-top: 20px;
        }

        .fancy-button:hover {
        background-color: #ff9933;
        }

        .container {
            width: 80%;
            margin: auto;
	    background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	}

        h1 {
            font-size: 24px;
            text-align: center;
            margin-bottom: 30px;
        }

        .form {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        label {
            font-weight: 500;
            margin-bottom: 10px; /* Add margin-bottom for vertical spacing */
        }

        textarea {
            width: 100%;
            resize: vertical;
            max-height: 200px;
            margin-bottom: 10px; /* Add margin-bottom for vertical spacing */
        }

        input[type="number"] {
            margin-bottom: 20px; /* Add more margin-bottom for vertical spacing */
        }

        input[type="submit"] {
            background-color: #007aff;
            color: #fff;
            border: none;
            padding: 10px 80px; /* Increase padding to give more width */
            font-size: 14px;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        input[type="submit"]:hover {
            background-color: #0056b3;
        }

        /* Responsive Design */
        @media (max-width: 767px) {
            .container {
                width: 100%;
                padding: 0 10px;
            }
        }
