body{
    padding: 0px;
    margin: 0px;
    border: 0px;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

.container{
    max-width:100%;
    width: 100%;
    height: 100vh;
    background: white; 
}

.container > .container-flex{

    position: absolute;
    top: 10%;
    bottom: 10%;
    left: 10%;
    right: 10%;
    width: 80%;
    height: 90vh;
    margin: auto;
    background-color: white;
    border-radius: 2%;
    box-shadow: -2px -3px 12px -4px black;
    /*Display flex*/
    display: flex;

}

/*Banner*/

.container-flex .banner{
   width: 60%;
   height: 100%;
   /*Display flex*/
   display: flex;
   flex-direction: column;
}

.banner .title-banner{
    width: 90%;
    height: 7%;
    margin: auto;
    background-color: black;
    color: white;
}

.banner .img-banner{
    width: 90%;
    height: 70%;
    margin: auto;
    float: right;
}

.banner .img-banner img{
   width: 100%;
}

.banner .text{
    font-size: 20px;
    font-weight: 400;
    width: 90%;
    height: 30%;
    margin: auto;
    text-align: center;
}


/*Formulario*/

.container-flex .form{
    width: 40%;
    height: 40%;
    background-color:#ffffff;

    /*Display Flex*/
    display: flex;
    flex-direction: column;
    
    
}

.form .title-form{
    width: 90%;
    height: 15%;
    font-weight: bold;
    text-align: center;
    margin-left: -23%;
    margin-top: 1%;
    font-size: 30px;
}

.contenido{
    font-weight: bold;
    margin-left: 20%;
    margin-top: -5%;
}

h4{
    background-color: black;
    color: white;
    height: 25px;
    padding: 7px;
    width: 73%;
}

.usu{
    font-size: 12px;
    padding: 5px;
    background-color: rgb(247, 243, 243);
    margin-top:0;
}

.form .text{
    box-sizing: border-box;
    width: 90%;
    height: 10%;
    margin: 0 auto;
    padding: 3px;
    text-align: center;
    font-size: 18px;
}

.form .formulario{

    width: 20%;
    height: 40%;
    margin-left:20%;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    float: left;
    border: 1px solid black;
}

.for2{
    position: fixed;
    margin-left: 19%;
    margin-top:20%;
}

.for2 img{
width: 100%;
}

.form .formulario .input {
    width: 80%;
    margin:  10px auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    font-size: 15px;
}

label{
    font-weight: 800;
}

.formulario input[type=text],input[type=password] {
    width: 100%;
    padding: 12px 20px;
    height: 30px;

    margin: 10px 0;

    box-sizing: border-box;
    font-size: 14px;
    outline:none;
}

.formulario a{
    font-size: 17px;
    text-decoration: none;
    margin: 5px auto;
    color: rgb(13, 14, 13);
    transition: all ease-in 0.1s;

}


.formulario a:hover{
    color: rgb(29, 32, 77);
    font-size: 18px;
}


input[type=submit]{
    background-color:#fdda24 !important;
    border: none;
    color: rgb(12, 12, 12);
    font-size: 17px;
    padding: 10px;
    cursor: pointer;
    transition: all .5s;
    width: 40%;
    margin-left: 30%;
  }

  #asd{
    margin-left: 48%
}
  
input[type=submit]:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.ss img{
    margin-top: 5%;
    float: left;
}

/*Responsive Design*/

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 1200px)
 {
.container-flex .banner{
    display: none;
 }
 .container-flex .form{
     width: 100%;
     height: 100%;
 }    
 }

 .container img{
    margin-left: 5%;
    
 }


 @media screen  {
    
 }



 @media only screen and (max-width: 600px) {
    
        .form .formulario {
            width: 90%;
            height: 50%;
            margin-left: 5%;
            box-sizing: border-box;
            background-color: rgb(255, 255, 255);
            float: left;
            border: 1px solid black;
        }
   
        .contenido{
            font-weight: bold;
            margin-left: 5%;
            margin-top: -5%;
            width: 118%;
            height: 15%;
            margin-bottom: 5%;
        }
        
        h4{
            background-color: black;
            color: white;
            height: 25px;
            padding: 7px;
            width: 73%;
        }
        
        .usu{
            font-size: 12px;
            padding: 5px;
            background-color: rgb(247, 243, 243);
            margin-top:0;
        }

        .ss img{
            margin-top: 5%;
            width: 90%;
        }

        .form .title-form {
            width: 90%;
            height: 5%;
            font-weight: bold;
            text-align: center;
            margin-left: -23%;
            margin-top: 1%;
            font-size: 30px;
        }
        .for2{
            position: relative;
            margin-left: -1%;
        }

  }