/* Seccion Header */
.menu__header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 13vh;
}
.menu__items{
    height: 2rem;
    display: flex;
    justify-content: center;
    width: 60vw;
}
.menu__buscador{
    display: flex;
    align-items: center;
}
.input__buscador{
    width: 30vw;
    height: 2.5rem;
    border-radius: 20px;
    margin-left: 10%;
    padding-left: 15%;
    font-size: 1.2rem;
    color: #808080;
    background-color: #f3f3f3;
    border-color: none;
    outline: none;
    display: flex;
    align-items: center;
    background: url(../img/lupa.png) no-repeat 5px ;
    transform: scale(0.8);
}
.input__buscador:focus{
    color: #808080;
    transform: scale(0.85,0.85);
}
/* Seccion Login */
.login__container{
    background-color: #f8f8f8;
    display: flex;
    height: 80vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.title__login{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1%;
}
.login__form{
    display: flex;
    flex-direction: column;
    height:40vh;
}
.input-container{
    display: flex;
    flex-direction: column;
}
.input__login, .login__btn{
    width: 30vw;
    height: 2.5rem;
    margin-bottom: 5%;
    outline: none;
    border: none;
}
.login__btn{
    color: #fdfdfd;
    height: 3rem;
    background-color: #2A7AE4;
    font-size: 1.1rem;
    margin-bottom: 5%;
}
.login__btn:hover{
    cursor: pointer;
}
.login__btn:active{
    transform: scale(0.95,0.95);
}
.input__login:focus{
    border-bottom:2px dotted #2A7AE4;
}

.input-message-error{
    display: none;
    justify-content: center;
    color: #ff000080;
}
.input__container-invalido .input{
    border-bottom:3px dotted #ff000060;

}
.input__container-valido .input{
    border:3px dotted #00DCF5;
    
}
.mensaje__accesoDenegado{
    display: none;
}
.mensaje__accesoDenegado-activo{
    color: #fdfdfd;
    background-color: rgb(147, 12, 12);
    border-radius: 5px;
    opacity: 0.9;
    padding: 1%;
    display: flex;
    margin-top: -1%;
    justify-content: center;
}

/* Seccion Rodapie */
.footer__container{
    position: relative;
    
    width: 100%;    
}
.footer__contacto{
    background-color: #DFFDFF;
    padding: 4% 6%;
    display: flex;
    justify-content: space-around;
}
.contacto__img{
    height: 2rem;
}
.footer__links{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 30vh;
    font-weight: 500;
}
.contacto__form{
    display: flex;
    flex-direction: column;
    width: 30%;
}
.text__contacto{
    font-weight: bolder;
    margin-left: 3%;
    margin-bottom: 3%;
}
.input__name, .input__mensaje{
    background-color: #fdfdfd;
    border: none;
    margin-bottom: 3%;
    padding-left: 3%;
}
.input__name{
    height: 2rem;
    border-radius: 15px;
}
.input__mensaje{
    border-radius: 15px;
    resize: none;
    font-size: .9rem;
}
.input__name::placeholder, .input__mensaje::placeholder{
    color: darkgrey;
}
.input__name:focus, .input__mensaje:focus{
    outline: dashed #808080 ;
}
.contacto__btn{
    width: 40%;
    height: 2rem;
    margin-left: 4%;
    background: #2A7AE4;
    color: #fdfdfd;
    border: none;
    border-radius: 8px;
}
.contacto__btn:hover{
    transform: scale(1.1);
    transition: 1s;
}
.footer__rodapie{
    text-align: center;
    padding: 1% 0;
}
