@charset "UTF-8";

:root {
    --bg: #3D250C;
    --bg-form: #745C43;
    --bg-input: #E6D3BF;
    --bg-button: #E6D3BF;
    --title: #E6D3BF;
    --text: black;
    --color-icons: black;
    
    --font-titulo: "titulo","sanserif";
}

*{
    margin: 0px;
    padding: 0px;
}

body{
    background-color: var(--bg); 
    overflow-y: hidden;
}

section.login{
    font-family: serif;
    color: var(--text);   
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

form{
    background-color: var(--bg-form);
    padding: 15px;
    border-radius: 25px;
    box-shadow: 2px 2px 3px rgba(48, 48, 48, 0.592);
    width: 30vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form > div.title{
    text-align: center;
    font-family: var(--font-titulo);
    font-weight: normal;
    color: var(--title);
    padding: 3% 0;
}

form > div.container-input{
    display: flex;
    align-items: center;
    background-color: var(--bg-input);
    padding: 2%;
    margin: 10px;
    border-radius: 1em;
    height: 2em;
    width: 80%;
}

form > div > span{
    color: var(--color-icons);
}

form > div.container-input > input{
    background-color: transparent;
    border: none;
    height: 100%;
    width: 80%;
    box-sizing: border-box;
   padding: 10px;
   color: var(--text);
   outline: none;
}

form > div.container-button{
    text-align: center;
    margin: 15px;
    width: 80%;
}

form > div.container-button > button{
    width: 100%;
    border-radius: 0.6em;
    height: 3.5em;
    color: var(--text);
    background-color: var(--bg-button);
    border: none;
    cursor: pointer;
}


/*RECADO*/

section.recado{
    display: flex;
    justify-content: center;
    padding-top: 10px;
    z-index: 2;
}

div.recadoContent{
    display: none;
    background-color: lightblue;
    border-radius: 8px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.47);
    width: 98%;
}

div.recadoContent > p{
    font-family: sans-serif;
    padding: 10px 20px;
}



@media screen and (min-width: 768px) and (max-width: 992px) {/*TABLET*/
    form{
        width: 60vw;
    }
}

@media screen and (max-width: 767px) {/*Celular*/
    form{
        width: 90vw;
    }

}
