/* =========================
   STEP 3 – DIGITE SUA SENHA
========================= */

.pin-screen {
  max-width: 380px;
  margin: 0 auto;
  padding: 24px 20px 32px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: #f7f7f7;
  min-height: 100vh;
}

/* =========================
   HEADER
========================= */

.confirm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.confirm-header .back {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #1c1c1c;
}

.confirm-header .help {
  font-size: 18px;
  color: #8a8a8a;
}

/* =========================
   TÍTULO
========================= */

.pin-screen h1 {
  font-size: 22px;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 18px;
}

/* =========================
   INPUTS PIN
========================= */

.pin-inputs {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.pin-inputs input {
  width: 68px;
  height: 68px;
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  background: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 600;
  outline: none;
  color: #1c1c1c;
}

.pin-inputs input:focus,
.pin-inputs input.filled {
  border-color: #1fa46b;
}

/* =========================
   EXIBIR SENHA
========================= */

.pin-options {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.pin-options input {
  accent-color: #1fa46b;
}

/* =========================
   AVISO DE SEGURANÇA
========================= */

.pin-warning {
  font-size: 14px;
  color: #6a6a6a;
  line-height: 1.45;
  margin-bottom: 22px;
}

.pin-warning a {
  color: #1fa46b;
  text-decoration: none;
  font-weight: 500;
}

/* =========================
   BOTÃO CONTINUAR
========================= */

#btnPin {
  width: 100%;
  height: 52px;
  border-radius: 26px;
  border: none;
  font-size: 17px;
  font-weight: 600;
  background: #cfcfcf;
  color: #ffffff;
  cursor: not-allowed;
  margin-bottom: 14px;
  transition: background 0.2s ease;
}

#btnPin.active {
  background: #1fa46b;   /* VERDE ATIVO */
  cursor: pointer;
}

/* =========================
   ESQUECI A SENHA
========================= */

.pin-forgot {
  width: 100%;
  height: 52px;
  border-radius: 26px;
  border: 2px solid #1fa46b;
  background: #ffffff;
  color: #1fa46b;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
}
