

/* Style for the Contact Form Container */
        .form-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        /* Style for the form heading */
        h2 {
            font-size: 28px;
            text-align: center;
            margin-bottom: 20px;
        }

        /* Style for the form labels */
        .form-label {
            font-weight: bold;
        }

        /* Style for the form input fields */
        .form-control {
            margin-bottom: 10px; /* Adjust the spacing between input fields */
        width: 100%; /* Adjust the width as needed */
}
        /* Style for the invalid feedback */
        .invalid-feedback {
            color: red;
        }

        /* Style for the valid feedback */
        .valid-feedback {
            color: green;
        }

        /* Style for the submit button */
        .btn-primary {
            display: block;
            margin: 0 auto;
        }