@import url("variables.css");

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-default);
}
*:focus{
    outline:none;
}
body{
    height: 100vh;
    display:flex; 
    margin:6rem auto;
    flex-direction: column;
    align-items: center;
    background: #F2F4F7;
}
.container-index{
    background-color: white;
    border:1px solid #DEE2E6;
    width:28rem;
    height:16rem;
    margin-top:2rem;
}
.container-index ul {
    width:100%;
    list-style-type: none;
    text-align: center;
    margin-top:1rem;
}
.container-index ul li{
    margin-bottom:1rem;
}
.container-index input[type=submit]{
    border: none;
    background-color: var(--background-buttons-default);
    color: var(--font-color-buttons-default);
    padding:0.65rem;
    cursor:pointer;
}
.container-index input[type=email], .container-index input[type=password], .container-index input[type=text]{
    border:1px solid #DEE2E6;
    padding:0.4rem;
    width:15rem;
    text-align:center;
}
.link-password a {
    text-decoration: none;
    color: grey;
    font-size:0.7rem;
}
.link-password a:hover{
    text-decoration: underline;
}
#status {
    border:1px solid lightgray;  
    color: black;
    font-size:0.8rem;
    font-weight: bold;
    padding:1.4rem;
    position:absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}

@media screen and (max-width:760px){
    .container-index{
        background-color: white;
        border:1px solid #DEE2E6;
        width:90%;
        height:16rem;
        margin-top:2rem;
    }
}


