/* public/css/app.css */
:root {
  --bw-bg: #000;
  --bw-fg: #fff;
}

body {
  margin: 0;
  height: 100vh;
  background-color: #111;
}

img {
  width: 350px;
  height: auto;
  margin-bottom: 0;
}

button {
  padding: 12px 32px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background-color: #fefefe;
  color: #454545;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #454545;
  color: #fefefe;
}

body {
  background: #fff;
  color: #000;
}

.bg-black {
  background: var(--bw-bg) !important;
}

.bg-white {
  background: var(--bw-fg) !important;
  color: #000;
}

.border-top {
  border-top: 1px solid #000 !important;
}

.card {
  background: #fff;
}

.card .card-body {
  color: #000;
}

.btn-light {
  border-radius: 999px;
}

.progress {
  height: 10px;
  background: #e9ecef;
}

.progress-bar {
  background: #000;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/*# sourceMappingURL=app.css.map */
