:root {
    --roxo-primario: #6a0dad;
    --roxo-secundario: #814ea5;
    --roxo-claro: #e1bee7;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.login-container {
    max-width: 350px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.login-body {
    padding: 30px;
}

.btn-purple {
    background-color: var(--roxo-primario);
    border-color: var(--roxo-primario);
    color: white;
}

.btn-purple:hover {
    background-color: var(--roxo-secundario);
    border-color: var(--roxo-secundario);
    color: White;
}

.form-control:focus {
    border-color: var(--roxo-claro);
    box-shadow: 0 0 0 0.25rem rgba(154, 39, 176, 0.25);
}

footer {
    margin-top: auto;
    background-color: var(--roxo-primario);
    color: white;
    padding: 5px 0;
    text-align: center;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-img {
    max-width: 250px;
    height: auto;
    margin-top: -20px;
    margin-bottom: -40px;
}

.text-purple {
    color: var(--roxo-primario) !important;
}

.forgot-password {
    color: var(--roxo-primario);
}

.forgot-password:hover {
    color: var(--roxo-secundario);
    text-decoration: underline;
}

.user-email {
    color: var(--roxo-primario);
    font-weight: bold;
}

/* Estilos para tabelas */
.table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.table thead {
    background-color: var(--roxo-primario);
    color: white;
}

.table thead th {
    font-weight: 500;
    border: none;
    padding: 15px;
}

.table tbody tr:hover {
    background-color: rgba(225, 190, 231, 0.1);
}

.table td {
    vertical-align: middle;
    padding: 12px 15px;
}

.table-responsive {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 20px;
}

.search-container input {
    max-width: 400px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .05);
}

.search-container input:focus {
    border-color: var(--roxo-claro);
    box-shadow: 0 0 0 0.25rem rgba(154, 39, 176, 0.25);
    outline: none;
}

/* Estilos para a página de admin */