*{
    box-sizing:border-box;
}


html,
body{

    margin:0;
    padding:0;

    width:100%;
    height:100%;

    font-family:-apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;

    background:#f4f6fb;

}



/* LOGIN */

.login-container{

    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    padding:25px;

}



.logo-box{

    margin-bottom:30px;

}



.logo{

    width:150px;
    max-width:70vw;

}



.login-card{

    background:white;

    width:100%;
    max-width:380px;

    padding:30px;

    border-radius:22px;

    box-shadow:
            0 20px 40px rgba(0,0,0,.12);

}



.login-card h2{

    margin-top:0;
    margin-bottom:25px;

    text-align:center;

    color:#222;

}



input{

    width:100%;

    height:52px;

    margin-bottom:15px;

    border-radius:14px;

    border:1px solid #ddd;

    padding:0 15px;

    font-size:16px;

}



input:focus{

    outline:none;

    border-color:#202867;

}



button{

    width:100%;

    height:52px;

    border:none;

    border-radius:14px;

    background:#202867;

    color:white;

    font-size:17px;
    font-weight:600;

    cursor:pointer;

}



button:active{

    transform:scale(.98);

}



.error{

    background:#ffe1e1;

    color:#b00020;

    padding:12px;

    border-radius:10px;

    margin-bottom:15px;

    text-align:center;

}



/* AREA */


.page{

    min-height:100vh;

    display:flex;
    flex-direction:column;

    justify-content:center;
    align-items:center;

    padding:20px;

    text-align:center;

}



.logout{

    margin-top:30px;

    background:#202867;

    color:white;

    padding:15px 30px;

    border-radius:12px;

    text-decoration:none;

}