/* ══════════════════════════════════════════════
   LOGIN — Página de acesso mentorado
   ══════════════════════════════════════════════ */

body {
  background: var(--ink);
  color: var(--bg);
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bg-pattern {
  position: fixed;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg,
    var(--bg) 0px,
    var(--bg) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.sun-deco {
  position: fixed;
  bottom: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  opacity: 0.06;
  pointer-events: none;
}

.card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 0 24px;
}

.brand { margin-bottom: 48px; }

.wordmark {
  font-size: 28px;
  font-weight: 600;
  color: var(--bg);
  letter-spacing: -0.3px;
}

.wordmark span { color: var(--bg); }

.slogan {
  font-size: 12px;
  font-weight: 300;
  color: rgba(242,240,239,0.4);
  margin-top: 4px;
}

.card-body {
  background: #111111;
  border: 1px solid rgba(242,240,239,0.1);
  border-radius: 12px;
  padding: 36px 32px;
}

.card-title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(242,240,239,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(242,240,239,0.5);
  margin-bottom: 8px;
  display: block;
}

.field-wrap { margin-bottom: 16px; }

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  background: rgba(242,240,239,0.06);
  border: 1px solid rgba(242,240,239,0.15);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--f);
  font-size: 14px;
  font-weight: 400;
  color: var(--bg);
  outline: none;
  transition: border-color 0.15s;
}

input[type="email"]::placeholder,
input[type="password"]::placeholder {
  color: rgba(242,240,239,0.25);
}

input:focus { border-color: var(--accent); }

.btn-enter {
  width: 100%;
  background: var(--accent);
  color: var(--ink);
  font-family: var(--f);
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}

.btn-enter:hover { background: #e03a22; }
.btn-enter:active { transform: scale(0.98); }

.error-msg {
  margin-top: 14px;
  font-size: 12px;
  color: var(--accent);
  text-align: center;
}

.footer-note {
  margin-top: 20px;
  text-align: center;
  font-size: 11px;
  font-weight: 300;
  color: rgba(242,240,239,0.2);
}
