#contactanos{
    display: none;
    justify-content: center; align-items: center;
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    align-self: center; justify-content: center;
    background: rgb(131,58,180);
background: linear-gradient(90deg, #285374 0%, #EB5D1C 100%);
    backdrop-filter: blur(10px);
}
#miFormulario {
    border-radius: 20px;
    max-width: 30%; height: min-content;
    margin: auto;
    background: #f4f4f4;
    padding: 20px;
    display: flex;
    justify-content: center; align-items: center;
    flex-direction: column;
}
#cerrar{
    cursor: pointer;
    align-self: flex-end;
    position: absolute;
    right: 13vw;
    width: 5vw; height: 5vw;
    display: flex;
    justify-content: center; align-items: center;
    border-radius: 50%;
    background: white;
    font-family: Arial, Helvetica, sans-serif;
    color: #252525;
    font-size: 2vw;
    font-weight: 800;
}

input {
    border: 1px solid #EB5D1C;
    border-radius: 10px;
    max-width: 100%;
    max-height: min-content;
    margin: 10px 0; padding: 10px;
    color: #000000;
    font-size: 1vw;
    font-family: 'Cutmark', sans-serif;
    font-weight: 800;
    font-style: normal; /* Usará Cutmark-BoldItalic.ttf */
    padding: 5px;

}
input:focus {
    border: 1px solid #285374;
}
textarea {
    border-radius: 10px;
    max-width: 100%;
    height: 30vh;
    margin: 10px 0; padding: 10px;
    color: #000000;
    font-size: 1vw;
    font-family: 'Cutmark', sans-serif;
    font-weight: 800;
    font-style: normal; /* Usará Cutmark-BoldItalic.ttf */
    padding: 5px;
}
#envio,#envio2 { background: red; color: white;
    padding: 10px; border: none; cursor: pointer;
    width: 100%;
    height: 10vh;
    border-radius: 10px;
}
#envio:hover { background: darkred; }

@media (orientation: portrait){
    #miFormulario {
        border-radius: 20px;
        max-width: 90%; height: min-content;
        margin: auto;
        background: #f4f4f4;
        padding: 20px;
        display: flex;
    }
    #cerrar{
        cursor: pointer;
        align-self: flex-end;
        right: unset;
        bottom: 2vh;
        align-self: center;
        width: 20vw; height: 20vw;
        display: flex;
        justify-content: center; align-items: center;
        border-radius: 50%;
        background: white;
        font-family: Arial, Helvetica, sans-serif;
        color: #252525;
        font-size: 15vw;
        font-weight: 800;
    }
    input, textarea {
        font-size: 4vw;
    }
}