/* =========================
   STEP 2 – CONFIRMAR TITULAR
========================= */

/* CONTAINER PRINCIPAL */
.confirm {
  min-height: 100vh;
  background: #f7f7f7;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* HEADER */
.confirm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.confirm-header .back {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.confirm-header .help {
  font-size: 20px;
  cursor: pointer;
}

/* TÍTULO */
.confirm h1 {
  margin-top: 32px;
  font-size: 26px;
  font-weight: 600;
  color: #1c1c1c;
}

/* SUBTÍTULO */
.confirm .subtitle {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.4;
  color: #555;
}

/* INFO CONTA */
.confirm .account-info {
  margin-top: 28px;
  font-size: 16px;
  color: #1c1c1c;
  line-height: 1.6;
}

/* CARD DO TITULAR */
.holder-card {
  margin-top: 28px;
}

.radio-card {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #1c1c1c;
  background: #fff;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: #2e7d32;
}

/* BOTÃO "NÃO É VOCÊ?" */
.link-btn {
  margin-top: 36px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: #2e7d32;
  cursor: pointer;
  text-align: left;
}

/* BOTÃO CONTINUAR */
.primary-btn {
  margin-top: auto;
  margin-bottom: 12px;
  height: 52px;
  border-radius: 12px;
  border: none;
  background: #2e7d32;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
}
