﻿/* Teste de CSS sem acentos */
:root {
  --accent1: #6a11cb;
  --accent2: #2575fc;
  --muted: #6b7280;
}
body { font-family: sans-serif; background-color: #f8f9fa !important; color: #111; }
.card { border-radius: 14px; }

.card { border-radius: 14px; }
.btn-primary { background: linear-gradient(90deg, var(--accent1), var(--accent2)); border: 0; }
.form-control { border-radius: 10px; padding: 12px; }
.form-label.required::after { content: " *"; color: #dc3545; }
.table thead th { background: #f3f4f6; }

@media (max-width: 768px) { 
  .card .col-md-5 { display: none !important; } 
}