.profile-website {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--violet);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.profile-website::before {
  content: "↗";
}

.profile-website:hover {
  text-decoration: underline;
}

.profile-form label small {
  color: var(--muted);
  font-weight: 500;
}

.verification-card {
  text-align: center;
}

.verification-card form {
  text-align: left;
  margin-top: 25px;
}

.verification-symbol {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 31px;
  font-weight: 800;
  box-shadow: 0 15px 34px rgba(70, 58, 190, .22);
}

.verification-symbol.success {
  background: linear-gradient(135deg, #6558f5, #21d6c5);
}

.verification-symbol.error {
  background: linear-gradient(135deg, #ff7a45, #e34f68);
}
