@font-face {
    font-family: Sprat;
    src: url(./fonts/sprat/Sprat-Regular.otf);
}
@font-face {
    font-family: DMSans;
    src: url(./fonts/DM_Sans/static/DMSans-Thin.ttf);
}
body, html{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
main{
    height: 100vh;
    padding: 0px 0px;
    background-image: url('../img/fondo-landing.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
h1.titular{
    font-size: 40px;
    text-align: center;
    font-family: Sprat;
    color: white;
    font-weight: 400;
    margin: 0px;
}
.texto-info{
    font-size: 26px;
    text-align: center;
    font-family: DMSans;
    color: white;
    width: 100%;
    margin: auto;
    max-width: 730px;
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.formulario{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 730px;
    margin: auto;
    width: 100%;
    margin-top: 50px;
}
input.inp_txt{
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    padding: 10px 0 10px 10px;
    font-size: 18px;
    color: white;
    font-family: DMSans;
    margin-right: 10px;
}
input.inp_txt::placeholder{
    color: white;
    opacity: 0.7;
}
button.btn_submit{
    background-color: transparent;
    border: 1px solid white;
    padding: 10px 20px;
    margin-left: 10px;
    font-size: 18px;
    font-family: DMSans;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: white;
}
button.btn_submit:hover{
    background-color: white;
    color: black;
}
img.logo{
    width: 220px;
    filter: brightness(1000);
    display: block;
    margin: auto;
    margin-top: 50px;
}