@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
:root{
    --background-light: #e4dede;
    --boxShadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    --warning:#ff3131;
    --sucess:#00bf63;
    --notice:#ffde59;
    --buttonFont-weight: 600;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: var(--background-light);
    background-repeat: no-repeat;
    background-size: auto;

    max-width: 100vw;
    min-height: 100vh;

    font-family: 'Inter', sans-serif;
}

/* ///////////////////////////////////////////////// */

/* //////////////////////////////////////////////// */

/* Login-Section */

.loging{
    grid-area: main;
    
    display: block;
    justify-content: center;
    align-items: center;
    background: white;
    border: #e4dede;
}

form{
    position: relative;
    justify-content: center;
    align-items: center;
    background-color: white;

    margin: 0 auto;
    padding: 20px;

    width: 350px;
    height: 400px;

    border: 1px solid whitesmoke;
    margin-top: 50px;

    border-top: 5px solid coral;
    border-radius: 5px;
    box-shadow: var(--boxShadow);
}

form > img{
    margin-top: 10px;
    width: 40%;
    margin-left: 90px;    
}

.inputUser{    
    display: block;

    padding-left: 30px;

    width: 100%;
    max-width: 300px;
    height: 30px;
    margin-left: -1px;

    background: #ececec;
    border: 1px solid gray;
    border-radius: 5px;

    font-size: 15px;
}

.check{
    display: inline-block;

    margin-top: 10px;
    font-weight:500;
}

#rememberMe{

    margin-right: 5px;
    width: 20px;
    height: 15px;
    color: coral;
}

button{
    display: inline-block;
    position: relative;
    
    margin-top: 20px;
    margin-bottom: 10px;
    
    width: 100%;
    max-width: 300px;
    height: 30px;

    font-size: 15px;
    font-weight: bold;

    color: #ffff;
    background:coral;

    border: none;
    border-radius: 5px;
    box-shadow: var(--boxShadow);
}

button:hover{
    color: coral;
    background: whitesmoke;
    border: 1px solid coral;
}

h1{
    color: coral;

    font-size: 25px;
    font-weight: 800;
    text-align: center;

    margin-top: 10px;
    margin-bottom: 10px;
}

a{
    text-decoration: none;
    color: black;

    margin-top: 20px;
}

.material-symbols-outlined{
    display: block;
    position: relative;
    
    top: 31px;

    color: dimgray;

    border-right: 1px solid gray;
}

/* ////////////////////////////////////////////// */

/* Footer section */

.language{
    grid-area: foot;

    display: flex;

    justify-content: center;
    align-items: center;

    background: transparent;
    text-align: center;
    width: 100%;
    height: 8vh;

    margin-top: 150px;
    font-weight: 300;
}

.container{
    display: grid;
    grid-template-columns: 1 1fr;
    grid-template-areas: 
    'nav'
    'main'
    'foot';
}