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

body{
    font-family: Arial, Helvetica, sans-serif;
    font-size:16px;
}

/* FUNDO */
.background{
    background-image:url("../images/planoFundo.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    height:100vh;
    position:relative;
}

/* CAMADA AZUL */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,70,160,0.35);
}

/* CENTRALIZAÇÃO */
.container-fluid{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    align-items:center;
    height:100vh;
}

/* CARD LOGIN */
.login-card{
    padding:30px;
    width:380px;
    min-height:320px;
    border-radius:10px;
    background:rgba(255,255,255,0.95);
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
}

/* LOGO */
.logo{
    width:100%;
    margin-bottom:25px;
    text-align:center;
}

.logo img{
    width:260px;
    max-width:100%;
}

/* CAMPOS */
.email,
.senha{
    margin-bottom:20px;
}

/* LABEL */
.form-label{
    font-weight:500;
    font-size:14px;
    margin-bottom:6px;
}

/* INPUT */
.form-control{
    font-size:14px;
    height:40px;
}

/* BOTÃO */
.entrar{
    text-align:center;
    margin-bottom:20px;
}

.entrar button{
    font-size:14px;
}

/* LINK */
.text-center a{
    text-decoration:none;
    font-size:14px;
    color:#0d6efd;
}

.text-center a:hover{
    text-decoration:underline;
}

/* MENSAGEM DE ERRO */
.erro{
    color:red;
    text-align:center;
    margin-bottom:10px;
}