/* EPIC Field Uploader - app.css (clean, no vars) */

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #1f2937;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  display: grid;
  place-items: center;
  padding: 24px;
}

.wrap {
  width: 100%;
  max-width: 520px;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 18px;
}

/* Logo */
.logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.logo-note {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  color: #5f6b7a;
}

.logo-note a {
  color: #1f6fd6;
  text-decoration: underline;
}

/* Card */
.card {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 26px;
}

.title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: #5f6b7a;
}

.bullets {
  margin: 0 0 22px;
  padding-left: 18px;
  color: #5f6b7a;
  font-size: 14px;
}

.bullets li {
  margin: 6px 0;
}

/* Button (blue → green accent) */
.btn-primary {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  background: linear-gradient(135deg, #1f6fd6, #2aa876);
  box-shadow: 0 8px 18px rgba(31, 111, 214, 0.22);
}

.btn-primary:active {
  transform: translateY(1px);
}

.helper {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #5f6b7a;
}

.footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #8a94a6;
}

.link {
  color: #1f6fd6;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}
