@import url("Estilo_Contac.css");

body {
    margin: 0;
    padding: 0;
    background-image: url("../img/patron.jpg"); /* Nota el cambio a minúscula en 'img' */
    background-repeat: repeat;
    background-size: 350px;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar {
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.titulo_contac {
    text-align: center;
    font-size: 45px;
    font-weight: bold;
    color: #0B2447;
    margin-top: 40px;
    margin-bottom: 30px;
}

.caja_formu {
    width: 80%;
    max-width: 950px;
    margin: auto;
    background-color: #3E8AD8;
    border-radius: 25px;
    padding: 50px;
    color: white;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.25);
}

.caja_formu h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    font-size: 18px;
    font-weight: bold;
}

.form-control {
    border-radius: 10px;
    border: none;
    height: 45px;
}

textarea.form-control {
    height: auto;
}

.btn-light {
    background-color: white;
    color: #0B2447;
    font-weight: bold;
    min-width: 140px;
    border-radius: 20px;
    border: none;
    transition: 0.3s;
}

.btn-light:hover {
    background-color: #d9d9d9;
    transform: scale(1.05);
}

input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 10px;
}

footer {
    margin-top: 50px;
    background-color: #6BC6F5;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #0B2447;
}
body footer {
    margin-left: -929px;
}


@media (max-width: 992px) {
    .caja_formu {
        width: 90%;
        padding: 35px;
    }

    .titulo_contac {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .titulo_contac {
        font-size: 32px;
    }

    .caja_formu {
        width: 95%;
        padding: 25px;
    }

    .form-group label {
        margin-bottom:
