/*CSS Tarea Fondo */

/*RESET*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif
}

.header {
    height: 100vh;
    width: 100vw;
    background-image: linear-gradient(
        to right bottom,
        #41414159,
        hsla(0, 0%, 100%, 0.376)
    ),
    url(../img/technology-7111799_1280.jpg);

    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
}

.logo {
    display: flex;
    justify-content: space-between; 
    margin: 0rem 4rem 2rem 4rem;
}

.redes {
    display: flex;
    justify-content:end;
    gap: 1rem;

} 

.letras-redes {
    margin-top: 4rem;
    color: #ffff;
    
}

.texto {
    display: flex;
    flex-direction: column;
    line-height: 1,6;
    color: #ffff;
    width: 50%;
}
.texto h1 {
    font-size: 42px;
}

.texto p {
    margin-top: 5.5rem;
}

.contenedor{
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    margin: 0rem 0rem 0rem 4rem;
}


.formulario{
    display: flex;
    flex-direction: column;
    margin: 0rem 6rem 0rem 3rem;
    width: 30%;
    background-color: #ffff;
    padding: 2rem;
}


label{
    display: block;
    margin: 1rem 0rem;
}


input[type="text"],
input[type="email"],
input[type="password"],

select{
    width: 100%;
    height: 40px;
    display: inline-block;
    padding: 0 7px;
    margin: 7px 0;
    border: 1px solid black;
}


input[type="submit"] {
    border: none;
    color: #ffff;
    font-size: 1rem;
    width: 100%;
}

input[type="submit"] {
background-color: rgb(0, 117, 0);
}


