* {
    margin: 0;
    padding: 0;
}

body{
    margin: 0;
    padding: 5px;
    font-family: Arial, sans-serif;
    flex-direction: column;
}

#ventanaLogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

#logo {
    height: 180px;
    width: 180px;
}

#txtLogin {
    font-size: 20px;
    font-weight: bold;
}

.entradaTexto {
    padding: 5px;
    margin: 5px 0px 5px 0px;
    border: 1px solid black;
}

.entradaTexto:hover {
    border: 1px solid #09c5ab;
}

.entradaTexto:focus {
    border: 1px solid #09c5ab;
}
 
#btnEntrar {
    height: 35px;
    width: 180px;
    margin-top: 20px;
    border-color: black;
    background-color:#09c5ab;
    border-style: solid;
    border-radius: 6px;
}
 
#btnEntrar:hover {
    width: 185px;
}

#cabecera{
    height: 100px;
    width: auto;
    background-color: rgb(36, 203, 233);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px 0px 20px;
}

#logoCabecera{
    height: 50px;
    width: 50px;
}

#cuerpo{
    display: flex;
    flex-direction: row;
}

#tablaProductos{
    width: 90%;
    margin-left: 10%;
}

#barraLateral{
    height: 100vh;
    width: 200px;
    background-color: rgb(36, 98, 233);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

#contenido{
    height: 100vh;
    width: calc(100% - 200px);
    text-align: center;
    margin-top: 20px;
}

#pie{
    height: 100px;
    width: auto;
    background-color: yellowgreen;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
