

.contact-body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-color: #fff;
	border-radius: 5px;
	padding: 30px;
}
.card-testimonial-3{
	border: none;
    border-left: 3px solid #434445;

    border-radius: 0px;
    display: flex;
    align-items: center;
    width: calc(100% - 1px);
    background-color: #191919;
}

.form-container {
        }

        .form-container h2 {
            text-align: center;
            margin-bottom: 20px;
        }

        .form-container label {
		    display: block;
		    margin-bottom: 5px;
		    font-weight: 500;
		    color: #5c5c5c;
		}

        .form-container input, .form-container textarea {
            width: 100%;
		    padding: 8px 10px;
		    margin-bottom: 5px;
		    border: 1px solid #ccc;
		    border-radius: 4px;
		    height: auto;
        }
        .form-container textarea {
            resize: none;
            height: 80px !important; /* Reduced height */
            min-height: auto;
        }
        .form-container .captcha {
            height: 48px;
        }

        .form-container button {
		    width: 100%;
		    padding: 10px;
		    background-color: #111111;
		    color: white;
		    border: none;
		    border-radius: 4px;
		    margin-top: 10px;
		    cursor: pointer;
		}

        .form-container button:hover {
		    background-color: #353535;
		    color: white;
		}

        .captcha {
            display: flex;
            align-items: center;
        }

        .captcha img {
            margin-left: 10px;
        }

        .error {
            color: red;
            font-size: 0.9em;
        }