:root {
  color-scheme: light;
  --ink: #000000;
  --muted: #4d4d4d;
  --surface: #ffffff;
  --canvas: #f7f7f7;
  --canvas-warm: #fffdf5;
  --line: #e6e6e6;
  --line-strong: #bdbdbd;
  --brand: #ffc90e;
  --brand-dark: #000000;
  --brand-soft: #fff6d1;
  --yellow: #ffc90e;
  --danger: #b42318;
  --danger-soft: #fff1f0;
  --warning: #7a5800;
  --warning-soft: #fff8e1;
  --success: #16794c;
  --success-soft: #edf9f2;
  --info: #1f4b70;
  --info-soft: #eef6fc;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 0 #00000012;
  --shadow: 4px 4px 0 #00000014;
  --focus: 0 0 0 3px rgba(255, 201, 14, 0.55);
  --font-body: "Source Sans 3", "Myriad Pro", "Segoe UI", sans-serif;
  --font-descriptor: "Jost", "Futura PT", "Futura", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 201, 14, 0.18), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, var(--canvas) 48%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea,
[tabindex="-1"] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

[tabindex="-1"]:focus {
  outline: none;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.top {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 2px solid #000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(100% - 32px, 1120px);
  min-height: 76px;
  margin: 0 auto;
  gap: 14px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  gap: 10px;
}

.brand-lockup-img {
  display: block;
  width: auto;
  height: 48px;
  max-width: min(280px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 2px solid #000;
  border-radius: 12px;
  background: #000;
  object-fit: cover;
}

.brand-lockup-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.brand-wordmark {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-descriptor {
  margin-top: 3px;
  color: #000;
  font-family: var(--font-descriptor);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
}

.brand-sub {
  overflow: hidden;
  margin: 0 0 0 4px;
  color: var(--muted);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logout-form {
  margin-left: auto;
}

button {
  min-height: 48px;
  padding: 11px 18px;
  border: 2px solid #000;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.button-primary {
  color: #000;
  border-color: #000;
  background: var(--yellow);
  box-shadow: 3px 3px 0 #000;
}

.button-secondary {
  color: #000;
  border-color: #000;
  background: #fff;
  box-shadow: 2px 2px 0 #00000022;
}

.button-quiet {
  min-height: 40px;
  padding: 8px 12px;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
}

.button-link {
  min-height: auto;
  padding: 2px;
  color: #000;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.28);
  text-underline-offset: 3px;
}

button:disabled {
  cursor: wait;
  color: #666;
  border-color: #aaa;
  background: #ddd;
  box-shadow: none;
  transform: none;
}

.wrap {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  margin-bottom: 28px;
  gap: 32px;
}

.intro {
  max-width: 750px;
}

.eyebrow {
  margin: 0 0 8px;
  color: #000;
  font-family: var(--font-descriptor);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.intro h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.intro > p:last-child {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.workflow {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.workflow a {
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.workflow a[aria-disabled="true"] {
  cursor: default;
  opacity: 0.58;
  pointer-events: none;
}

.workflow span {
  display: grid;
  width: 24px;
  height: 24px;
  margin-right: 7px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  font-size: 12px;
}

.workflow .is-current a {
  color: #000;
  background: var(--yellow);
  border: 1px solid #000;
}

.workflow .is-current span {
  color: #000;
  border-color: #000;
  background: #fff;
}

.workflow .is-complete span {
  color: #fff;
  border-color: #000;
  background: #000;
}

.message {
  display: flex;
  align-items: flex-start;
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid;
  border-radius: var(--radius-sm);
  gap: 12px;
  font-size: 14px;
}

.message p {
  margin: 0;
}

.message p + p {
  margin-top: 6px;
}

.message-icon {
  display: grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}

.message-error {
  color: var(--danger);
  border-color: #f2cbc5;
  background: var(--danger-soft);
}

.message-warn {
  color: var(--warning);
  border-color: #ecdba9;
  background: var(--warning-soft);
}

.message-info {
  color: var(--info);
  border-color: #c9e0ec;
  background: var(--info-soft);
}

.message-compact {
  margin-bottom: 18px;
  text-align: left;
}

.error-list {
  margin: 9px 0 0;
  padding-left: 20px;
}

.error-list li + li {
  margin-top: 4px;
}

.panel {
  margin-bottom: 20px;
  padding: 28px;
  border: 2px solid #000;
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.step-head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  gap: 14px;
}

.step-number {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 800;
}

.step-complete > .step-head .step-number {
  color: #fff;
  background: #000;
}

.step-head h2 {
  margin: 1px 0 0;
  font-size: 21px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.step-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.step-head p strong {
  color: var(--ink);
  font-weight: 700;
}

.upload-form {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
  align-items: stretch;
  gap: 14px 20px;
}

.file-picker {
  position: relative;
  display: flex;
  grid-row: span 2;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  border: 2px dashed #000;
  border-radius: 14px;
  background: var(--canvas-warm);
  cursor: pointer;
  gap: 16px;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.file-picker.is-dragging,
.file-picker:focus-within {
  border-style: solid;
  border-color: #000;
  background: var(--brand-soft);
  box-shadow: var(--focus);
}

.file-picker.has-files {
  border-style: solid;
  border-color: #000;
  background: #fffbe8;
}

.file-picker.has-error {
  border-color: #d68b80;
  background: var(--danger-soft);
}

.file-picker input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.file-icon {
  display: grid;
  flex: 0 0 52px;
  height: 52px;
  place-items: center;
  border: 2px solid #000;
  border-radius: 12px;
  color: #000;
  background: var(--yellow);
  box-shadow: 2px 2px 0 #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.file-picker-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.file-picker-copy strong {
  color: var(--ink);
  font-size: 16px;
}

.file-picker-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.selected-files {
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.selected-files:empty {
  display: none;
}

.selected-summary {
  margin: 0 0 5px;
  color: var(--ink);
  font-weight: 750;
}

.selected-files ul {
  max-height: 86px;
  margin: 0;
  padding-left: 18px;
  overflow: auto;
}

.selected-files li {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-error {
  margin: 7px 0 0;
  color: var(--danger);
  font-weight: 700;
}

.upload-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.upload-actions .field-hint {
  max-width: 310px;
}

button.is-busy {
  pointer-events: none;
  opacity: 0.72;
  cursor: wait;
}

.upload-status {
  min-height: 1.4em;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.upload-status.is-error {
  color: var(--danger);
}

.upload-actions button {
  flex: 0 0 auto;
}

.field-hint {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.upload-result {
  margin-top: 22px;
  padding: 20px;
  border: 2px solid #000;
  border-radius: 14px;
  background: #fffbe8;
}

.success-head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 11px;
}

.success-check {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  color: #000;
  background: var(--yellow);
  font-size: 14px;
  font-weight: 900;
}

.success-head p {
  margin: 0;
}

.success-title {
  color: #000;
  font-weight: 850;
}

.success-title + p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 10px;
}

.metrics > div {
  min-width: 0;
  padding: 13px 14px;
  border: 1px solid #dcebe5;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.metrics span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.field-media,
.field-number,
.field-period {
  grid-column: span 2;
}

.field-downtime,
.form-actions {
  grid-column: 1 / -1;
}

.field-label,
.field-group legend {
  color: #34403e;
  font-size: 13px;
  font-weight: 750;
}

.field-label-row,
.field-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.field-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  gap: 12px;
}

.field-group legend {
  width: 100%;
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 2px solid #000;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fff;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

select {
  cursor: pointer;
}

textarea {
  min-height: 112px;
  line-height: 1.45;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #879792;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: none;
  box-shadow: var(--focus);
}

input::placeholder,
textarea::placeholder {
  color: #929c99;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 4px;
  gap: 12px;
}

.form-actions button {
  min-width: 190px;
}

.form-actions .draft-restore {
  margin-right: auto;
}

.preview-warning {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.report-frame {
  padding: 28px;
  border: 1px solid #e2e4df;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0)),
}

.report-sheet {
  width: min(100%, 820px);
  min-height: 960px;
  margin: 0 auto;
  padding: 54px 62px;
  color: #111;
  border: 1px solid #d6d6d3;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(20, 30, 27, 0.12);
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.report-sheet h3 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.report-sheet p {
  margin: 0;
}

.report-intro {
  margin-bottom: 0 !important;
}

.table-scroll {
  width: 100%;
  overflow-x: auto;
}

.report-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 15px;
}

.report-table th,
.report-table td {
  padding: 3px 7px;
  border: 1px solid #111;
  background: #fff;
  font-weight: 400;
  line-height: 1.15;
  vertical-align: middle;
}

.report-table th:first-child,
.report-table td:first-child {
  width: 7%;
  text-align: left;
}

.report-table th:nth-child(2) {
  width: 72%;
  text-align: center;
}

.report-table td:nth-child(2) {
  width: 72%;
  text-align: left;
}

.report-table th:last-child,
.report-table td:last-child {
  width: 21%;
  text-align: center;
}

.report-paid {
  margin-top: 14px !important;
}

.report-over {
  margin-top: 14px !important;
}

.download-bar {
  display: flex;
  align-items: center;
  width: min(100%, 900px);
  margin: 22px auto 0;
  padding: 16px;
  border: 2px solid #000;
  border-radius: 12px;
  background: var(--yellow);
  gap: 20px;
  box-shadow: 3px 3px 0 #000;
}

.download-bar > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.download-bar strong {
  font-size: 14px;
}

.download-bar span {
  margin-top: 2px;
  color: #333;
  font-size: 12px;
}

.download-bar button {
  flex: 0 0 auto;
}

.download-status {
  min-height: 21px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: right;
}

.download-status.is-success {
  color: var(--success);
}

.download-status.is-error {
  color: var(--danger);
  font-weight: 700;
}

.footer {
  width: min(100% - 32px, 1120px);
  margin: 0 auto;
  padding: 0 0 44px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer-brand {
  margin-top: 8px !important;
  color: #000;
  font-family: var(--font-descriptor);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-bar {
  position: sticky;
  bottom: 0;
  height: 10px;
  background: var(--yellow);
  border-top: 2px solid #000;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px 16px 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 201, 14, 0.28), transparent 24rem),
}

.login-wrap {
  width: min(100%, 440px);
}

.login-card {
  padding: 40px;
  border: 2px solid #000;
  border-radius: 20px;
  background: #fff;
  box-shadow: 6px 6px 0 #000;
  text-align: center;
}

.login-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
  color: #000;
}

.login-lockup-img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 100%;
  object-fit: contain;
}

.login-mark {
  width: 72px;
  height: 72px;
  border: 2px solid #000;
  border-radius: 16px;
  background: var(--yellow);
  object-fit: cover;
}

.login-brand-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.login-brand-text .brand-wordmark {
  font-size: 24px;
  letter-spacing: 0.05em;
}

.login-brand-text .brand-descriptor {
  font-size: 12px;
  letter-spacing: 0.32em;
}

.login-card h1 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.login-subtitle {
  margin: 9px 0 26px;
  color: var(--muted);
  font-size: 15px;
}

.login-form {
  display: grid;
  gap: 16px;
  text-align: left;
}

.login-submit {
  width: 100%;
  margin-top: 4px;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 92px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 7px;
  min-height: 36px;
  padding: 6px 8px;
  color: #000;
  background: transparent;
  font-size: 12px;
  transform: translateY(-50%);
}

.login-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

@media (hover: hover) {
  .button-primary:hover {
    border-color: #000;
    background: #ffd84a;
    box-shadow: 4px 4px 0 #000;
    transform: translateY(-1px);
  }

  .button-secondary:hover {
    border-color: #000;
    background: var(--brand-soft);
  }

  .button-quiet:hover,
  .password-toggle:hover {
    color: #000;
    background: var(--yellow);
  }

  .button-link:hover {
    color: #000;
    text-decoration-color: currentColor;
  }

  .workflow a:hover {
    color: #000;
    background: var(--brand-soft);
  }

  .file-picker:hover {
    border-color: #000;
    background: var(--brand-soft);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 20px;
  }

  .workflow {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .upload-form {
    grid-template-columns: 1fr;
  }

  .file-picker {
    grid-row: auto;
  }

  .upload-actions {
    align-items: center;
  }

  .report-frame {
    padding: 18px;
  }

  .report-sheet {
    min-height: auto;
    padding: 40px 44px;
  }
}

@media (max-width: 680px) {
  .wrap {
    padding-top: 32px;
  }

  .intro > p:last-child {
    font-size: 16px;
  }

  .panel {
    padding: 21px;
    border-radius: 14px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-media,
  .field-number,
  .field-period,
  .field-downtime,
  .form-actions {
    grid-column: 1;
  }

  .field-group {
    grid-template-columns: 1fr 1fr;
  }

  .download-bar {
    align-items: stretch;
    flex-direction: column;
  }

  .download-bar button {
    width: 100%;
  }

  .report-frame {
    margin-right: -21px;
    margin-left: -21px;
    padding: 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .report-sheet {
    padding: 30px 26px;
    font-size: 14px;
  }

  .report-table {
    min-width: 520px;
    font-size: 13px;
  }

  .login-card {
    padding: 32px 24px;
  }
}

@media (max-width: 460px) {
  .brand {
    width: min(100% - 24px, 1120px);
    min-height: 64px;
  }

  .brand-lockup-img {
    height: 40px;
    max-width: min(220px, 58vw);
  }

  .brand-sub {
    display: none;
  }

  .wrap,
  .footer {
    width: min(100% - 24px, 1120px);
  }

  .workflow a {
    padding-right: 7px;
    padding-left: 7px;
    font-size: 12px;
  }

  .panel {
    padding: 18px;
  }

  .step-head {
    margin-bottom: 20px;
  }

  .step-head h2 {
    font-size: 18px;
  }

  .file-picker {
    min-height: 112px;
    padding: 18px;
  }

  .file-icon {
    flex-basis: 44px;
    height: 44px;
  }

  .upload-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .upload-actions button,
  .form-actions button {
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .form-actions .draft-restore {
    margin-right: 0;
  }

  .field-group {
    grid-template-columns: 1fr;
  }

  .field-label-row,
  .field-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .report-frame {
    margin-right: -18px;
    margin-left: -18px;
  }

  .report-sheet {
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  body {
    background: #fff;
  }

  .top,
  .hero,
  .panel:not(.preview),
  .step-head,
  .preview-warning,
  .download-bar,
  .download-status,
  .footer,
  .brand-bar {
    display: none !important;
  }

  .wrap,
  .panel,
  .report-frame,
  .report-sheet {
    width: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: #fff;
    box-shadow: none;
  }
}
