html, body{
    background: #2F2F2F;
    max-width: 100vw;
    scroll-behavior: smooth;
    font-family: Trebuchet, sans-serif;
}

*:focus {
    outline:none;
}

a{
    text-decoration: none;
}

/* ============= FLASH MESSAGES ============== */

.sMsg{
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 350px;
    margin: 10px auto;
    margin-top:5px;
    color:rgb(8, 96, 0);
    background: rgb(218, 255, 218);
}

.eMsg{
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 350px;
    margin: 20px auto;
    margin-top: 10px;
    color:rgb(240, 240, 240);
    background: rgb(133, 0, 0);
    font-weight: 500;
    letter-spacing: 1px;
}

/* ----- Main Box -----  */
.box-main{
    width: 95vw;
    display: grid;
    grid-template-columns: 100%;
    margin:auto;
    min-height:95vh;
}

.login-form{
    text-align: center;
    width:80%;
    max-width: 600px;
    min-height: 400px;
    height: 40vh;
    background: rgb(142, 142, 142);
    margin: auto;
    animation: fadeIn 1.1s ease-in-out ;
}

@keyframes fadeIn{
    0% {
        opacity: 0;
    }
}

form{
    padding: 10%;
}

.title{
    text-align: right;
    height: 20%;
    background: rgb(68, 68, 68);
    color: rgb(0, 0, 0);
    font-size: 300%;
    letter-spacing: 5px;
} 

.title:before{
    content: 'LOG-IN'
}

/* inputs */
input{
    margin: 10px auto;
    color: rgb(0, 0, 0);
    padding: 5px 10px;
    width: 305px;
    height: 32px;
    background-color: rgb(232, 240, 254);
    border: none;
}

 /* button */
button{
    margin: 25px auto;
    color: rgb(223, 223, 223);
    width: 45%;
    height: 42px;
    background: #151515;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0px 0px 0px black;
}

button:hover{
    background: rgb(74, 74, 74);
    box-shadow: 1px 1px 2px black;
    width: 50%;
}

button:active{
    background: rgb(74, 74, 74);
    box-shadow: 0px 0px 0px black;
}

button::before{
    content: "GO!";
    letter-spacing: 3px;
}