@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* Header */
header {
    width: 100%;
    height: 40vw;
    display: flex;
    align-items: center;
    justify-content: end;
    background-image: url("../img/contacto.webp");
    font-family: "Montserrat", sans-serif;
    background-size: 75% 100%;
    background-position: right;
    background-repeat: no-repeat;
    position: relative;
    overflow: visible;
}
.azulheader {
    position: absolute;
    width: 39%;
    z-index: 2;
    left: 0;
}
.textheader {
    width: 100%;
    height: 90%;
    float: right;
    text-align: right;
    color: white;
}
.titleH {
    background-color: rgba(0, 0, 0, 0.3);
}
.textheader h2 {
    font-size: 5vw;
    margin: 0;
    padding-right: 3vw;
}
.textheader p {
    font-size: 2vw;
    font-weight: 500;
    margin: 0 0 0 0;
    padding-right: 3vw;
    padding-left: 38vw;
    line-height: 1.9;
}
.azulheader img {
    width: 100%;
    height: auto;
}

main {
    width: 100%;
    margin: 100px 0;
    height: auto;
    display: flex !important;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}
form {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-width: 800px;
    padding: 20px;
    background-color: rgba(14, 60, 137, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: white;
}
form div {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 15px;
}
form h2 {
    font-weight: 100;
    font-size: 2vw;
}
form div span {
    margin-bottom: 10px;
    font-weight: 100;
}
form textarea {
    height: 150px;
}
form input:focus,
form textarea:focus {
    outline: none;
    border-color: rgba(14, 60, 137, 1);
    box-shadow: 0 0 5px rgba(14, 60, 137, 0.7), 0 0 10px rgba(14, 60, 137, 0.6),
        0 0 20px rgba(14, 60, 137, 0.5), 0 0 40px rgba(14, 60, 137, 0.4);
}
@media screen and (max-width: 600px) {
    header {
        height: 120vw;
        background-size: 200% 100%;
        background-position: center;
    }
    .titleH {
        margin-top: 70%;
    }
    .titleH h2 {
        font-size: 10vw;
    }
    .textheader p {
        font-size: 5vw;
        font-weight: 500;
        padding-left: 0;
    }
    .azulheader {
        width: 40%;
        top: -20%;
    }
}
