.contact-form {
    background: #d9f5f0e0;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 100%;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Importante para el padding */
}

.contact-form .btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.contact-form .btn:hover {
    background-color: #0056b3;
}
label {
	color: #2196F3;
	font-weight: 700;
}
label a{
	color: #2196F3;
	font-weight: 700;
}
a,  a:hover, a:focus, a:active {
    text-decoration: none;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    font-weight: 600;
    outline: none;
	color: crimson;
}
.submit-btn {
    width: 100%;
    margin-top: 10px;
    background: #ff5f13;
    padding: 10px 10px;
    color: #fff;
    cursor: pointer;
    text-transform: uppercase;
    font-family: "Barlow", sans-serif;
    font-size: 14px;
    border-radius: 5px;
    border: 0;
}

