/* ─── Confirmação de envio ─────────────────────────────── */

.fp-confirm {
  text-align: center;
}

.fp-confirm-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 95, 85, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.fp-confirm-icon svg {
  width: 28px;
  height: 28px;
  color: var(--green);
  stroke-width: 1.8;
}

.fp-confirm h2 {
  margin-bottom: 0.8rem;
}

.fp-confirm .login-description {
  text-align: center;
}

.fp-confirm-note {
  font-size: 0.84rem;
  color: var(--text-secondary);
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.fp-link-button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--green-dark);
  cursor: pointer;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.fp-link-button:hover {
  opacity: 0.75;
}

.fp-link-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.fp-back-login {
  display: inline-flex;
  width: 100%;
  text-decoration: none;
  background: var(--green-dark);
  color: #fff;
  height: 44px;
  border-radius: var(--radius-button);
  font-size: 0.9rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.fp-back-login svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.fp-back-login:hover {
  background: #004f40;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 88, 70, 0.18);
}
