* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {

    font-family: Arial, sans-serif;

    background: #f4f7fb;

    min-height: 100vh;

}

.login-container {

    width: 100%;

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 20px;

}

.login-card {

    width: 100%;

    max-width: 420px;

    background: white;

    border-radius: 24px;

    padding: 35px;

    box-shadow:
            0 8px 30px rgba(0,0,0,0.08);

}

.login-card h1 {

    font-size: 28px;

    margin-bottom: 10px;

    text-align: center;

    color: #111;

}

.login-card p {

    text-align: center;

    color: #666;

    margin-bottom: 30px;

    line-height: 1.6;

}

form {

    width: 100%;

}

input {

    width: 100%;

    height: 58px;

    border: 1px solid #ddd;

    border-radius: 16px;

    padding: 0 16px;

    font-size: 16px;

    margin-bottom: 16px;

    outline: none;

    transition: 0.2s;

}

input:focus {

    border-color: #1e88e5;

    box-shadow:
            0 0 0 4px rgba(30,136,229,0.12);

}

button {

    width: 100%;

    height: 58px;

    border: none;

    border-radius: 16px;

    background: #1e88e5;

    color: white;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;

}

button:hover {

    opacity: 0.95;

}

button:active {

    transform: scale(0.98);

}

.dashboard-container {

    padding: 20px;

}

.topbar {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 25px;

    gap: 15px;

}

.topbar h1 {

    font-size: 24px;

}

.topbar button {

    width: 120px;

}

.cards {

    display: grid;

    grid-template-columns:
            repeat(auto-fit, minmax(220px, 1fr));

    gap: 20px;

}

.card {

    background: white;

    border-radius: 20px;

    padding: 25px;

    box-shadow:
            0 6px 20px rgba(0,0,0,0.06);

}

.card span {

    display: block;

    color: #666;

    margin-bottom: 10px;

    line-height: 1.5;

}

.card h2 {

    font-size: 34px;

    color: #111;

}

.table-container {

    width: 100%;

    overflow-x: auto;

    margin-top: 20px;

}

table {

    width: 100%;

    border-collapse: collapse;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
            0 6px 20px rgba(0,0,0,0.06);

}

th {

    background: #1e88e5;

    color: white;

    padding: 14px;

    text-align: left;

    font-size: 14px;

}

td {

    padding: 14px;

    border-bottom: 1px solid #eee;

    font-size: 14px;

}

tr:hover {

    background: #f8fbff;

}

.status-pago {

    background: #e8f5e9;

    color: #2e7d32;

    padding: 6px 10px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: bold;

}

.status-pendente {

    background: #fff3e0;

    color: #ef6c00;

    padding: 6px 10px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: bold;

}

.btn-tabela {

    min-height: auto;

    height: 40px;

    padding: 0 16px;

    border-radius: 10px;

    font-size: 13px;

}
