:root {
  --epeople-blue: #2067b2;
  --epeople-green: #ced54d;
}

* {
  box-sizing: border-box;
}

body.epeople-body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f2f0ee;
  background-image: radial-gradient(#e2dfda 1px, transparent 1px);
  background-size: 14px 14px;
}

.epeople-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}

.epeople-card {
  width: 100%;
  max-width: 500px;
  background: #ffffff;
  border-radius: 2px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.epeople-stripe {
  height: 8px;
  background-image: url("assets/epeople-stripe.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.epeople-content {
  padding: 40px 56px 48px;
}

.epeople-logo {
  margin: 0 0 32px;
  text-align: center;
  font-family: "Trebuchet MS", Verdana, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.epeople-logo-e {
  color: var(--epeople-green);
  font-style: italic;
}

.epeople-logo-dash {
  color: var(--epeople-blue);
}

.epeople-logo-people {
  color: var(--epeople-blue);
}

.epeople-field {
  margin-bottom: 20px;
}

.epeople-field label {
  display: block;
  font-size: 0.95rem;
  color: #161514;
  margin-bottom: 6px;
}

.epeople-field input {
  width: 100%;
  padding: 10px 12px;
  font-size: 1rem;
  border: 1px solid #8b8580;
  border-radius: 2px;
  outline: none;
}

.epeople-field input:focus {
  border-color: #e07900;
  box-shadow: 0 0 0 1px #e07900;
}

.epeople-error {
  margin: -6px 0 16px;
  padding: 10px 12px;
  border: 1px solid #c94f4f;
  border-radius: 2px;
  background: #fbeaea;
  color: #a12f2f;
  font-size: 0.9rem;
  line-height: 1.4;
}

.epeople-help {
  display: block;
  text-align: center;
  margin: 12px 0 24px;
  color: var(--epeople-blue);
  text-decoration: none;
  font-size: 0.95rem;
}

.epeople-help:hover {
  text-decoration: underline;
}

.epeople-signin {
  width: 100%;
  padding: 14px;
  background: #312d2a;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.epeople-signin:hover {
  background: #1f1c1a;
}

@media (max-width: 480px) {
  .epeople-content {
    padding: 32px 28px 40px;
  }

  .epeople-logo {
    font-size: 2rem;
  }
}
