@import url(./init.css);


*{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans';
    box-sizing: border-box;
}

html,body{
    width: 100vw;
    height: 100vh;
}

body{
    display: flex;
    align-items: center;    
    justify-content: center;
    background: url("../images/fondo.jpeg");    
    background-size: cover;
    background-repeat: no-repeat;
}

.login-container{
    width: 300px;
    height: 380px;
    display: flex;
    padding: 10px 0px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    border: 1px solid lightgray;
    background-color: rgba(255, 255, 255, .7);
    border-top: 3px solid var(--sys-primary-color);
    box-shadow: 0px 0px 10px 10px rgba(0, 0, 0, .1);    
}

.login-container img{
    width: 90%;
    margin-bottom: 10px;
}

.login-container input{
    width: 90%;
    height: 40px;
    text-indent: 10px;
    margin-bottom: 30px;    
}

.login-container button{
    width: 150px;
    height: 30px;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    font-family: 'Trade';
    color: var(--sys-white);
    font-size: 18px;
    background-color: var(--sys-primary-color);   
}

.error_message{
    width: 90%;
    display: flex;
    display: none;
    padding: 10px 0;
    align-items: center;
    margin-bottom: 10px;
    justify-content: center;
    background-color: rgba(218,41,28,.4);
}