/* Reset de estilos para garantir consistência entre navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
}

/* Definições básicas do body para centralização */
body, html {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url(/img/bkg.jpg);
    background-size: cover;  
    background-position: center;
}

/* Estilo para o container principal */
.div_login {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px; /* Ajuste conforme necessário */
    padding: 20px;
    text-align: center;
}

/* Estilo para o cabeçalho do login */
#header-log {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

#header-log img {
    width: 50px; /* Ajuste conforme necessário */
    height: 50px; /* Ajuste conforme necessário */
    border-radius: 50%;
    margin-bottom: 10px;
}

#header-log {
    font-size: 20px;
    font-weight: bold;
    color: #410083;
}

/* Estilo para o formulário */
#div-form form {
    display: flex;
    flex-direction: column;
}

#div-form input[type="text"],
#div-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Estilo para a visualização da senha */
#view-pass {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    text-align: left;
}

#view-pass label {
    font-size: 15px;
    font-weight: 500;
}

#view-pass input[type="checkbox"] {
    height: 20px;
    margin-top: 10px;
    margin-bottom: 20px;
}
#login_view{
    width: 40px;
}
/* Estilo para o botão de login */
#btn-log {
    width: 200px;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    background-color: #2f7c02;
}
#alert-account{
    font-size: 15px;
}
#link-cadastrar{
    font-size: 17px;
    color: #6d02b4;
}
#btn-log:hover {
    background-color: #488545;
}

#btn-log:active{
    background-color: #7d8a5e;
}
.g-recaptcha{
    margin-top: 20px;
}