/* === ESTILO GLOBAL === */
:root {
  --font-app: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --app-container-max: 1480px;
  --app-module-bg: rgba(255, 255, 255, .70);
  --app-module-border: rgba(255, 255, 255, .48);
  --app-module-shadow: 0 12px 32px rgba(15, 23, 42, .08);
  --app-module-radius: 18px;
  --app-module-padding: 24px;
}

html,
body {
  font-family: var(--font-app);
  background-color: #f8f9fa;
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea,
table {
  font-family: var(--font-app);
}

.container {
  max-width: var(--app-container-max);
  padding-top: 40px;
  padding-bottom: 40px;
}

/* === BOTÕES === */
.btn-primary {
  background-color: #1f6feb;
  border: none;
}

.btn-primary:hover {
  background-color: #155fce;
}

.btn-outline-secondary:hover {
  background-color: #e2e6ea;
}

/* === FORMULÁRIOS === */
.form-label {
  font-weight: 500;
}

.form-control {
  border-radius: 6px;
  font-size: 15px;
  padding: 10px 12px;
}

/* === LINKS === */
a.text-primary {
  font-size: 0.95rem;
}

/* === MODAL PADRÃO === */
.modal-header.bg-success { background-color: #198754 !important; }
.modal-header.bg-danger { background-color: #dc3545 !important; }
.modal-header.bg-warning { background-color: #ffc107 !important; color: #212529 !important; }
.modal-header.bg-primary { background-color: #0d6efd !important; }

/* === LOGIN / REGISTRO === */
body, html {
  height: 100%;
}

.left-panel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 50px;
  flex-direction: column;
}

.left-panel h1 {
  font-size: 3rem;
  font-weight: 700;
}

.right-panel {
  background-color: #ffffff;
  padding: 60px 30px;
}

.login-box {
  max-width: 400px;
  width: 100%;
}



.left-panel {
  background: linear-gradient(to bottom, #0f0f0f, #1f1f1f);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}
.left-panel img {
  margin-bottom: 20px;
}
.left-panel h1 {
  font-weight: bold;
  font-size: 2.2rem;
}
