@import url("login.css"); /* re-use branding & shared styles, or copy shared parts here */
.icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    rgba(125, 12, 0, 0.1) 0%,
    rgba(0, 103, 184, 0.1) 100%
  );
  border-radius: 50%;
  margin-bottom: 16px;
}
.icon-wrapper i {
  font-size: 24px;
  background: linear-gradient(135deg, #7d0c00, #0067b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.input-hint {
  font-size: 12px;
  color: #6b7280;
  margin-top: 6px;
  margin-bottom: 10px;
}
.success-message {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
  display: none;
}
.success-message.show {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  animation: slideDown 0.3s ease;
}
.success-message i {
  color: #10b981;
  font-size: 18px;
  margin-top: 2px;
}
.success-message-content h3 {
  font-size: 14px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 4px;
}
.success-message-content p {
  font-size: 13px;
  color: #545454;
  line-height: 1.4;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
