@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: white;
}

body {
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


img {
    max-width: 100%;
}

header, footer {
    padding: .5em;
}

header {
    height: 3em;
    display: flex;    
    flex-direction: row-reverse; 
    align-items: center;
}

.menu {
    display: flex;
    width:85%;
    height:auto;
    max-width:209px;
    max-height:auto;
    justify-content: right;
}

header ul li {
    width: 3em;
    height: 3em;
    margin-left:.25em;
    margin-right:1em;    
    margin-top:2em;
    display: flex;  
}

header ul li a {
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
    font-weight: bold;
    justify-content: right;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;  
    background-color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portada{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width:70%;
    max-width: 400px;
    background-color: white;
}


.bienvenido{
  display: flex;
  flex-direction: column; 
  align-items: center;
  justify-content: center;
    background-color: white;
}

.imgbienvenido{
    width:100%;
    height:auto;
    max-width:418px;
    max-height:auto;

}

.ingreso{
    
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;

  margin-top: 3.5em;
  max-width: 400px;
}

.ingreso p {
  font-size: 16px; 
    margin-bottom:0.7em;
}

.ingreso input {
    height:2.5em; 
    padding:1em;
    text-align-last: center;
    border: 1px solid #33CBFF;
    font-size: 15px; 
    margin-bottom: 1em;
}

.ingreso input:focus {
    border: 1.5px solid #33CBFF;
}
 
.ingreso input::placeholder{
    text-align-last: left;    
    color:darkgray;
}

.boton {
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    text-decoration:none;
    height:2.5em; 
    text-align: center;
    color:#4D4D4D;
    border: 1px solid #9A9A9A;
    border-radius: 7px;
    box-shadow: 1px 1px 4px #9A9A9A;
    font-size: 15px;
    margin-bottom: 2.4em;
}
.boton:hover {
    cursor:pointer;
    border: 2px solid #9A9A9A;

}
.boton:active {
    color:white;
    box-shadow:none;
    border: 1px solid #1085C7;
    background: #1085C7;
}

footer{
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer img{
    max-width:100%;
    height:auto;
}

.logouba{
    width:90%;
    height:90%;
    max-width:340px;
    max-height:80px;
    margin-bottom: 7vh;
}


.help ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

.help p {
    color: #33CBFF;
    font-size: 10px;
    letter-spacing: 3px;
}

.help ul li a {  
    color: #33CBFF;
    font-size: 10px;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.help ul li a:hover {
    cursor:pointer;
    color: #1085C7;
    font-size: 10px;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}