/* SOTI MobiControl Access Page — Waste Connections
   Brand colors: green #0D7343 (primary), blue #0059B3 (secondary) */

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #f8fafc;
  color: #1f2937;
  min-height: 100vh;
}

.top-bar {
  height: 8px;
  background: #0D7343;
}

.page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 16px;
}

.card {
  width: 100%;
  max-width: 672px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
  overflow: hidden;
}

/* Logos */
.logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 32px;
  border-bottom: 1px solid #eef0f3;
}
.logo-wc { height: 56px; max-width: 100%; object-fit: contain; }
.logo-soti { height: 40px; max-width: 100%; object-fit: contain; }
.divider { width: 128px; height: 1px; background: #e5e7eb; }

@media (min-width: 720px) {
  .logos { flex-direction: row; gap: 56px; }
  .divider { width: 1px; height: 64px; }
}

/* Content */
.content {
  padding: 40px 32px;
  text-align: center;
}
@media (min-width: 640px) {
  .content { padding: 48px; }
}

.shield {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(27, 107, 58, 0.1);
  color: #0D7343;
  display: flex;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.intro, .support {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(31, 41, 55, 0.8);
  max-width: 560px;
  margin: 0 auto 16px;
}

.steps {
  text-align: left;
  max-width: 480px;
  margin: 0 auto 16px;
  padding-left: 36px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(31, 41, 55, 0.8);
}
.steps li { margin-bottom: 8px; }

.support a {
  color: #0059B3;
  font-weight: 500;
  text-decoration: none;
}
.support a:hover { text-decoration: underline; }

/* Call-to-action button */
.cta-wrap { padding-top: 24px; }
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0D7343;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 32px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.15);
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.cta:hover {
  background: #0B5F37;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 32px;
  background: #f6f7f9;
  border-top: 1px solid #eef0f3;
  font-size: 14px;
  color: #6b7280;
}
.footer a { color: inherit; text-decoration: none; }
.footer a:hover { color: #1f2937; }

@media (min-width: 640px) {
  .footer { flex-direction: row; }
}
