/* css/style.css */
body {
    background-color: #f3f4f6;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.login-body {
    background-color: #1e3a8a; /* Dark blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}
.logo {
    max-width: 200px;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.875rem;
    font-weight: 600;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    box-sizing: border-box;
    font-family: inherit;
}
.btn-login {
    background-color: #0f172a;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s;
}
.btn-login:hover {
    background-color: #1e293b;
}
.error {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    background-color: #fff5f5;
    padding: 0.75rem;
    border-radius: 6px;
    border: 1px solid #feb2b2;
}

/* Dashboard Styles */
.header { background-color: #1e3a8a; color: white; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.container { padding: 2rem; max-width: 1200px; margin: 0 auto; }
.card { background: white; border-radius: 8px; padding: 1.5rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); margin-bottom: 1.5rem; }
.processo-item { border-bottom: 1px solid #e2e8f0; padding-bottom: 1rem; margin-bottom: 1rem; }
.processo-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.btn-logout { color: white; text-decoration: none; background: rgba(255,255,255,0.1); padding: 0.5rem 1rem; border-radius: 4px; transition: background 0.2s; }
.btn-logout:hover { background: rgba(255,255,255,0.2); }
.btn-view { display: inline-block; background-color: #3182ce; color: white; padding: 0.5rem 1rem; text-decoration: none; border-radius: 4px; font-size: 0.875rem; font-weight: 500; transition: background 0.2s; }
.btn-view:hover { background-color: #2b6cb0; }
.status-badge { display: inline-block; padding: 0.25rem 0.5rem; border-radius: 9999px; font-size: 0.75rem; font-weight: bold; }
.status-Ativo { background-color: #c6f6d5; color: #22543d; }
.status-Suspenso { background-color: #feebc8; color: #7b341e; }
.status-Arquivado, .status-Baixado { background-color: #e2e8f0; color: #4a5568; }

/* Processo Styles */
.btn-back { display: inline-block; margin-bottom: 1.5rem; color: #4a5568; text-decoration: none; font-weight: 500; }
.btn-back:hover { color: #2d3748; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 768px) { .grid { grid-template-columns: 1fr; } }
.info-label { font-size: 0.75rem; color: #718096; text-transform: uppercase; font-weight: bold; margin-bottom: 0.25rem; }
.info-value { font-size: 1rem; color: #2d3748; margin-bottom: 1rem; }
.timeline { position: relative; padding-left: 1.5rem; border-left: 2px solid #e2e8f0; }
.timeline-item { position: relative; margin-bottom: 1.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.85rem; top: 0.25rem; width: 0.75rem; height: 0.75rem; background: #3182ce; border-radius: 50%; border: 2px solid white; }
.timeline-date { font-size: 0.875rem; color: #718096; margin-bottom: 0.25rem; }
.timeline-desc { color: #2d3748; line-height: 1.5; }
