
body{
    overflow: hidden;
}

.content_main{
    width: 100%;
    min-height: 100vh;   
    background-image: linear-gradient(to right, #2c3e50, #3498db);
    background-size: cover;
    background-repeat: no-repeat;

}

.content_main nav, .logo, .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content_main nav{
    margin: 0 50px;
    height: 60px;
}

.logo{
    display: flex;
    align-items: center;
    justify-content: space-between;
    
}
.logo img{
    width: 40px;
}.logo .logotipo{
    color: rgb(255, 255, 255);
    
    }.logo .logotipo span{
        color: rgb(0,182, 255);
    }
.creador{
    color: rgb(255, 255, 255);
}


.content{
    margin: 40px 20px;
}

.content_text{
    width: 100%;
    margin-left: 80px;
    display: block;
}
.content_text .text_primero, .text_tercero{
    font-size: 28px;
    font-weight: 400;
    color: rgb(255, 255, 255);
}.content_text .text_segundo{
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgb(0,182, 255);
    }



.content_login{
    width: 50%;
    margin-right: 80px;
    display: flex;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
}

.content_login form {
    width: 300px;
    height: 400px;
    padding: 25px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.login_head{
    margin: 20px 0px;
}

.login_head img{
    width: 80px;
    margin-bottom: 5px;
    margin-top: 10px;
}

.content_login form input[type = "text"],input[type = "password"]{
    width: 100%;
    border: 0;
    background-color: transparent;
    margin: 10px 0px;
    padding: 10px 35px 10px 10px;
    border-bottom: 2px solid rgb(255, 255, 255);
    outline: none;
    color: rgb(255, 255, 255);
    box-sizing: border-box;
    font-family: 'Poppins';
    font-weight: 200;
    font-size: 15px;
}::placeholder { color: rgb(255, 255, 255); }

.inputPass{
    position:relative;
}

.icon{
    position:absolute;
    right:10px;
    top:50%;
    transform:translateY(-50%);
    cursor: pointer;
}
.icon:hover{
    color: rgb(0,182, 255);
}

.content_login form input[type = "submit"]{
    width: 100%;
     display: block;
    padding: 12px 0px;
    margin-top: 20px;
    border: none;
    outline: none;
    border-radius: 8px;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: 4px;
    color: rgb(255, 255, 255);
    background: #FFA400;
    cursor: pointer;
}

.content_footer {
    display: block;
    bottom: 20px;
    padding: 10px 20px;
    text-align: center;
}.content_footer label{
    font-weight: 200;
    font-size: 12px;
    color: rgb(255, 255, 255);
}

@media (max-width: 400px){
    
    body{
        overflow: auto;
    }
    
    .content_main{
        max-width: 400px;
    }
    .content_text{
        display: none;
    }
    .content_login{
        width: 100%;
        margin: 0;
    }
    .content_main nav{
        padding: 20px;
        display: flex;
        flex-direction: column;
    }
    .content_footer{
        position:static;
    }
} 









