body {
    background-color: #f8f9fa;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
            "slnt" 0;
}

.contact-form {
    background: #fff;
    margin-top: 5%;
    margin-bottom: 5%;
    width: 90%;
    padding: 30px;
    box-shadow: 0px 0px 10px 0px #000;
}

.contact-form h3 {
    margin-bottom: 15px;
    color: #f4d85a;
}

.form-control:focus {
    box-shadow: none;
    border-color: #001701;
}

.btn-contact {
    background: #273628;
    color: #fff;
    cursor: pointer;
}

.btn-contact:hover {
    background: #001701;
    color: #f4d85a;
}

#texto_error{
    color: red;
}

.contact-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 0;
    margin-bottom: 20px;
}
.contact-info div {
    text-align: center;
    color: #001701;
}
.contact-info i {
    margin-right: 8px;
}
.contact-image {
    margin-bottom: 20px;
}

.contact-container {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-top: 5%; /* Margin top añadido */
}

.contact-form {
    max-width: 600px;
    margin: 0 auto; /* Centrando el formulario */
}

/* Responsive Design Start */
@media (max-width: 768px) {
    .contact-container {
        margin-top: 40%; /* Margin top añadido */
    }

    .contact-info {
        display: block;
    }
}

#loadingSpinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Fondo blanco semi-transparente */
    display: none; /* Oculto por defecto */
    align-items: center;
    justify-content: center;
    z-index: 1050; /* Asegura que esté sobre otros elementos */
}
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}