@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    font-family: "Funnel Sans", sans-serif;
    font-weight: 300;
    font-size: 12pt;
    outline: none;
}
body, html{
    height: 100%;
}
.conteudo{
    height: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e2e9f7;
}
.login{
    max-width: 100%;
    padding: 20px;
    border-radius: 3px;
    background-color: #ffffff;
    box-shadow: 2px 2px 2px #d4ddee;
}
.login form{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 230px;
}
.login .titulo{
    margin-bottom: 10px;
    text-align: center;
}
.login .titulo img{
    width: 100px;
}
.login input[type="text"],
.login input[type="password"]{
    width: 300px;
    max-width: 100%;
    padding: 15px;
    border-radius: 3px;
    border: solid 1px #dce2ea;
    background-color: #f8f8f8;
}
.login .botao{
    margin-top: 10px;
}
.botao input[type="submit"]{
    display: block;
    width: 300px;
    max-width: 100%;
    padding: 15px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-align: center;
    background-color: #61bdf6;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: background-color 250ms linear;
    transition: background-color 250ms linear;
}
.botao input[type="submit"]:hover{
    background-color: #428bf8;
}
.msg{
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    border: solid 1px #f00f00;
}
.msg p{
    text-align: center;
    color: #f00f00;
}