/* Estilos Gerais (sem alterações) */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f4f7f6;
  color: #333;
  margin: 0;
  padding: 20px;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

h1, h2, h3, h4 { color: #2c3e50; }
h1 { border-bottom: 2px solid #e0e0e0; padding-bottom: 10px; margin-bottom: 20px; }
hr { border: none; border-top: 1px solid #eee; margin: 30px 0; }
.form-group { margin-bottom: 20px; }
label { display: block; font-weight: 600; margin-bottom: 8px; }

input[type="email"], input[type="text"], input[type="password"], select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="email"]:focus, input[type="text"]:focus, input[type="password"]:focus, select:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

button {
  background-color: #3498db;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.2s;
}
button:hover { background-color: #2980b9; }

.search-form { display: flex; align-items: flex-end; gap: 15px; }
.search-form .form-group { flex-grow: 1; margin-bottom: 0; }
.card { background-color: #fdfdfd; border: 1px solid #e0e0e0; border-radius: 6px; padding: 25px; margin-top: 20px; }
.user-card { border-left: 5px solid #2980b9; }
.license-card { border-left: 5px solid #16a085; }
.note { font-size: 0.9em; color: #7f8c8d; background-color: #ecf0f1; padding: 10px; border-radius: 4px; margin-top: 15px; }
.status-box { background-color: #ecf0f1; border: 1px solid #bdc3c7; border-radius: 4px; padding: 15px; margin: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.status-text { font-weight: 600; }
.checkbox-group { display: flex; align-items: center; margin-top: 10px; }
.checkbox-group input[type="checkbox"] { margin-right: 10px; width: auto; }
.flash { padding: 15px; margin-bottom: 20px; border-radius: 4px; font-weight: 500; }
.flash.success { background-color: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.flash.error { background-color: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.placeholder { text-align: center; color: #7f8c8d; padding: 40px 0; }
.header-actions { text-align: right; margin-bottom: 20px; }
.logout-button { display: inline-block; padding: 8px 15px; background-color: #e74c3c; color: white; text-decoration: none; border-radius: 4px; font-size: 14px; font-weight: 500; transition: background-color 0.2s; }
.logout-button:hover { background-color: #c0392b; }

/* --- NOVOS ESTILOS PARA A PÁGINA DE LOGIN --- */

.login-page-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
    padding: 0;
}

.login-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-card h1 {
    border-bottom: none;
    margin-bottom: 10px;
    font-size: 24px;
}

.login-subtitle {
    margin-top: 0;
    margin-bottom: 30px;
    color: #666;
}

.login-card .form-group {
    text-align: left;
}

.login-card button {
    width: 100%;
    margin-top: 10px;
}
