*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body{
    position: relative;
    height: 100vh;
    
}

.bi {
    height: 30px;
    width: 50px;
    margin-top: 10px;
    margin-left: 10px;
    color:gray;
}


#contiendoPadre{
    width: 70%;
    height: 70%;
    position: absolute;
    transform: translate(50%,-50%);
    top: 50%;
    right: 50%;
    display: flex;
    
}

h1{
    text-align: center;
    font-size: 3em;
    margin-top: 2%;
}

#ladoIzquierdo{
    width: 55%;
    height: 100%;
    
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    z-index: 2;
    border: 1px solid gray;
    
}

#ladoDerecho{
    width: 45%;
    height: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    color:black;
    background-color:rgba(220, 214, 214, 0.3);
    position: absolute;
    left:55%;
    z-index: 1;
    border: 1px solid gray;
    
}

#contenedorLogin{
    display: block;
}

#contenedorRegistre{
    display: none;
}

label p{
    font-size: 1.1em;
    margin:5% 0 1% 10%;
}

input{
    width: 80%;
    margin-left: 10%;
    text-align: center;
    font-size: 1.7em;
}

#botoIngresar{
    margin: 3% 0 0 35%;
    width:30%;
    border-radius: 5px;
    font-size: 90%;
    text-align: center;
    background-color: black;
    color:white;
}

.botonIngresar{
    margin: 3% 0 0 35%;
    width:30%;
    border-radius: 5px;
    font-size: 90%;
    text-align: center;
    background-color: black;
    color:white;

}

#registro{
    font-size: 1em;
    text-align: center;
    margin-top: 5%;
}

#registro a{
    color:red;
    text-decoration: none;
}

.botonIngresar:hover{
    background-color: white;
    color:black;
}

input:hover{
    background-color: silver;
}

@media(min-height: 720px) and (max-width: 1024px) and (min-width: 482px) {

    h1{
        font-size:6em ;
        margin-top: 4%;
    }

    #contiendoPadre{
        display: inline-block;
        width: 90%;
        height: 90%;
        padding: 10px 10px 10px 10px;
        border-radius: 0;
        
    }
   
    #ladoIzquierdo, #ladoDerecho{
        width:100%;
        height: 60%;
        padding:  3% 0 3% 0;
        position: relative;
        left: 0%;
        z-index: 0;
        border-radius: 0;
        
    }

    #ladoIzquierdo{
        height: 40%;
        width:100%;
    }

    label p{
        font-size: 3em;
        margin-top: 3%;
    }

    input{
        font-size: 4em;
    }

    .botonIngresar{
        font-size: 3em;
        border-radius: 10px;
    }

    #registro{
        font-size: 2em;
        padding-top: 2%;
    }
}

@media(max-height: 482px) or (max-width: 482px){

    body{
        height: 482px;
    }

    #contiendoPadre{
        width: 90%;
    }

    #botoIngresar{
        font-size: 0.84em;
    }

   label p{
        font-size: 1.1em;
        margin-top:2% ;
    }
}
