@import url('https://fonts.googleapis.com/css2?family=Pathway+Extreme&display=swap');

/* Reset de estilos básicos */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Pathway Extreme', sans-serif;
    background-color: #f2f2f2;
}

/* Container de login */
.login-container {
    max-width: 300px;
    margin: 100px auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo dos campos de input */
input[type="text"], input[type="password"], input[type="submit"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="text"], input[type="password"] {
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-family: 'Pathway Extreme', sans-serif;
}


.botao-login{
    background-color: #539fbd;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Pathway Extreme', sans-serif;
}

th {
    font-size: 16px;
}

.entity-name, .metodo-name, .categoria-name{
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 16px;
}

.entity-saldo{
    font-family: 'Pathway Extreme', sans-serif;
    font-size: 16px;
    text-align: center;
}

.img-load{
    width: 25px;
    height: 25px;
}

/* Estilo do título de login */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #539fbd;
    font-size: 25px;
    position: relative; /* Adicionado */
    font-family: 'Pathway Extreme', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
}

.close {
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

hr{
    border-top: 1px solid #ddd;
}

@media screen and (max-width: 425px) {
    .entity-name, .metodo-name, .categoria-name{
        font-size: 13px;
    }
    .entity-saldo{
        font-size: 13px;
    }
    th {
        font-size: 15px;
    }
}

