body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    margin: 0;
    padding: 0;
}

.modal_login_teste {
    display: flex; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal_login_teste_content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    text-align: center;
}


.link_palavra {
    color: #f60017;
    text-decoration: underline;
    cursor: pointer;
}


.form_login_teste_container {
    display: none;
    margin-top: 20px;
}

button {
    background-color: #f60017;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #d40014;
}

.mensagem_senha_incorreta{
    color: #d40014;
    font-weight: bold;
    
}