/* Bootstrap 5 import */
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg, #ede9fe 0%, #f6fef7 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-container, .login-container {
    max-width: 900px;
    width: 95vw;
    margin: 40px auto;
    background: #fff;
    border-radius: 1rem;
    box-shadow: 0 6px 32px rgba(124, 58, 237, 0.10), 0 1.5px 6px rgba(124, 58, 237, 0.07);
    padding: 3rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

h1, h2 {
    color: #7c3aed;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

label {
    font-size: 1.08em;
    margin-bottom: 0.25rem;
    color: #7c3aed;
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0 1.25rem 0;
    border: 1.5px solid #d1c4e9;
    border-radius: 0.5rem;
    box-sizing: border-box;
    font-size: 1.08em;
    background: #f3f0ff;
    transition: border 0.2s, box-shadow 0.2s;
}

input:focus, select:focus, textarea:focus {
    border: 1.5px solid #7c3aed;
    outline: none;
    box-shadow: 0 0 0 2px #a78bfa;
    background: #ede9fe;
}

.btn-primary, button[type="submit"] {
    background: #7c3aed;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem;
    transition: background 0.2s;
}

.btn-primary:hover, button[type="submit"]:hover {
    background: #5b21b6;
}

.table {
    background: #fff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.05);
}

th {
    background: #ede9fe;
    color: #7c3aed;
    font-weight: 600;
}

tr {
    border-bottom: 1px solid #e5e7eb;
}

tr:last-child {
    border-bottom: none;
}

.erro {
    color: #fff;
    background: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

@media (max-width: 600px) {
    .dashboard-container, .login-container {
        padding: 1rem;
    }
    h1, h2 {
        font-size: 1.2rem;
    }
} 