 .wpcf7 p {
     margin-top: 3px; 
	 margin-bottom: 5px; /* Adjust this value to increase or decrease spacing */
    }
.wpcf7-form label {
    font-size: 12px;
    color: #333;
    margin-bottom: 5px;
    display: block; /* Ensures label takes up full width and moves subsequent elements to new line */
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"] {
	color: #000000;
	font-size: 12px;
	font-weight: 100;
	padding: 2px 5px 2px 5px;
	border: 1px solid #000000;
	box-sizing: border-box;
	margin-bottom: -25px; /* Adjust this value to increase or decrease spacing */
	letter-spacing: 2px;
 }
.wpcf7 textarea {
    width: 100%;
    padding: 5px 12px;
    border: 1px solid #051D4B;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    margin-bottom: 2px;
    font-size: 12px;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 textarea:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none; /* Remove default outline */
}

.wpcf7 input[type="submit"] {
     color: #ffffff;
     font-size: 12px;
     font-weight: 100;
     background: #051D4B;
     padding: 10px 25px 10px 25px;
     border: none;
     border-radius: 5px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .wpcf7 input:hover[type="submit"] {
     background: #2B6CB0;
     transition: all 2.0s;
 }
 
.wpcf7 input:active[type="submit"] {
     background: #2B6CB0;
 }

