/* 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;
}

.password-field{
    position:relative;
}

.password-field .form-control{
    padding-right:44px;
}

.toggle-password{
    position:absolute;
    top:50%;
    right:10px;
    transform:translateY(-50%);
    width:32px;
    height:32px;
    border:0;
    border-radius:8px;
    background:transparent;
    color:#5f6f86;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:background 0.2s ease,color 0.2s ease;
}

.toggle-password:hover{
    background:#eef5fc;
    color:#286BB2;
}

.toggle-password:focus{
    outline:2px solid rgba(40,107,178,0.25);
    outline-offset:2px;
}

/* 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;
}
