@charset "UTF-8";
/* CSS Document */

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --accent: #0066a5;
  --accent-dark: #004e7c;
  --radius: 12px;
  --border: rgba(0,0,0,.08);
  --bg-light: #f8f9fa;
  --text-muted: #6c757d;
}
body, table, input, select, button {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #111;
}
p { line-height: 1.45; }
@media (min-width: 768px) {
  .row.mt-4 > .col-md-6.offset-md-3.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-left: 0;
  }
}
body { background: var(--bg-light); }
.row.mt-4 .card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  overflow: hidden;
}
.row.mt-4 .card .card-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.row.mt-4 .card .card-header h1,
.row.mt-4 .card .card-header h5 {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: .5rem;
}
.row.mt-4 .card .card-header p.small,
.row.mt-4 .card .card-header .text-muted {
  color: var(--text-muted) !important;
}
.row.mt-4 .table-responsive,
.row.mt-4 .card .card-body {
  padding: 1.25rem 1.5rem;
}
.row.mt-4 table.table th,
.row.mt-4 table.table td {
  vertical-align: middle;
  white-space: nowrap;
}
.row.mt-4 table.table thead th {
  border-bottom: 2px solid var(--border);
  font-weight: 700;
}
.horizontal-header { text-transform: none; }
.form-group label {
  font-weight: 600;
  margin-bottom: .35rem;
}
.form-control {
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid #ced4da;
}
.form-control:focus {
  border-color: var(--accent);
  outline: 0;
  box-shadow: 0 0 0 .2rem rgba(0,102,165,.25);
}
.btn-primary,
.btn-bargaining,
.btn-accent {
  background: var(--accent);
  border: none;
  color: #fff;
}
.btn-primary:hover,
.btn-bargaining:hover,
.btn-accent:hover,
.btn-primary:focus,
.btn-bargaining:focus,
.btn-accent:focus {
  background: var(--accent-dark);
  box-shadow: 0 0 0 .2rem rgba(0,102,165,.25);
}
a { color: var(--accent); }
a:hover, a:focus { color: var(--accent-dark); text-decoration: underline; }
.mb-0 { margin-bottom: 0 !important; }
.mt-1 { margin-top: .25rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }

.row.mt-4 form button[type="submit"] {
  display: block;
  margin: 15px auto 0 auto;
}
