.ccass-form {
  justify-content: unset;
}

.cf-turnstile {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

.ccass-register-type-toggle {
  margin-bottom: 20px;
  width: 100%;
}

.ccass-register-type-label {
  margin-bottom: 8px;
  font-weight: bold;
  color: #6b7280;
}

.ccass-register-type-buttons {
  display: flex;
  gap: 10px;
  background: #f5f5f5;
  padding: 4px;
  border-radius: 0px;
  transition: background-color 0.2s;
}
.ccass-register-type-buttons:has(.ccass-toggle-btn:not(.active):hover) {
  background-color: #e5e5e5;
}

.ccass-toggle-btn {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  color: #6b7280;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0px;
  transition: all 0.2s;
}

.ccass-toggle-btn:hover {
  background-color: unset;
}

.ccass-toggle-btn.active {
  background: #ffffff;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

#confirmation {
  text-align: center;
  padding: 2em;
}
#confirmation .confirmation-text {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  font-weight: 500;
}
#confirmation .confirmation-separator {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  width: 80px;
  margin: 2em auto;
}
#confirmation .confirmation-resend {
  margin-top: 1.5em;
}
#confirmation .confirmation-resend .resend-text {
  color: #6b7280;
  margin-bottom: 0.75em;
  font-weight: 500;
  font-size: 15px;
}
#confirmation .confirmation-resend .resend-link {
  color: #374151;
  text-decoration: underline;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
#confirmation .confirmation-resend .resend-link:hover {
  color: #111827;
}
#confirmation .confirmation-resend .resend-link.disabled {
  color: #9ca3af;
  text-decoration: none;
  cursor: not-allowed;
  pointer-events: none;
}
#confirmation .confirmation-resend .resend-status-msg {
  margin-top: 1em;
  font-size: 14px;
  font-weight: 600;
}
#confirmation .confirmation-resend .resend-status-msg.success {
  color: #10b981;
}
#confirmation .confirmation-resend .resend-status-msg.error {
  color: #ef4444;
}