.tg-verify-page {
  min-height: 100vh;
  background: url("../../images/body.png") no-repeat center center fixed;
  background-size: cover;
  background-color: #ffadad;
  color: #333;
}

.tg-verify-page .tg-verify-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.tg-verify-page .tg-verify-card {
  width: 100%;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 36px 30px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.tg-verify-page .tg-verify-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff5f5;
}

.tg-verify-page .tg-verify-card.is-success .tg-verify-icon {
  background: #eefae8;
}

.tg-verify-page .tg-verify-card.is-warning .tg-verify-icon {
  background: #fff7e8;
}

.tg-verify-page .tg-verify-card.is-error .tg-verify-icon {
  background: #fff1f1;
}

.tg-verify-page .tg-verify-icon i {
  font-size: 32px;
}

.tg-verify-page .tg-verify-card.is-success .tg-verify-icon i {
  color: #73b85a;
}

.tg-verify-page .tg-verify-card.is-warning .tg-verify-icon i {
  color: #d89b28;
}

.tg-verify-page .tg-verify-card.is-error .tg-verify-icon i {
  color: #e16a6a;
}

.tg-verify-page .tg-verify-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffadad;
}

.tg-verify-page .tg-verify-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 22px;
}

.tg-verify-page .tg-verify-dynamic-content {
  width: 100%;
}

.tg-verify-page .tg-verify-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 14px;
}

.tg-verify-page .tg-verify-input-group {
  text-align: left;
}

.tg-verify-page .tg-verify-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.tg-verify-page .tg-verify-input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ffe3e3;
  background: #fffdf7;
  font-size: 15px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tg-verify-page .tg-verify-input-group input:focus {
  border-color: #ffadad;
  box-shadow: 0 0 6px rgba(255, 173, 173, 0.4);
  outline: none;
}

.tg-verify-page .tg-verify-input-group input:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.tg-verify-page .tg-verify-primary-btn,
.tg-verify-page .tg-verify-secondary-btn {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
}

.tg-verify-page .tg-verify-primary-btn {
  background: #ffadad;
  color: #fff;
  box-shadow: 0 4px 10px rgba(255, 173, 173, 0.3);
}

.tg-verify-page .tg-verify-primary-btn:hover {
  background: #fff3c2;
  color: #333;
  transform: translateY(-2px);
}

.tg-verify-page .tg-verify-primary-btn:disabled {
  background: #f3b6b6;
  color: #fff;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.tg-verify-page .tg-verify-secondary-btn {
  background: #fff7f7;
  color: #d97b86;
  border: 1px solid #ffd1d1;
}

.tg-verify-page .tg-verify-secondary-btn:hover {
  background: #fff0f0;
  transform: translateY(-1px);
}

.tg-verify-page .tg-verify-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tg-verify-page .tg-verify-submit-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: tg-verify-spin 0.75s linear infinite;
}

.tg-verify-page .tg-verify-notification-container {
  position: fixed;
  top: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  max-width: 340px;
}

.tg-verify-page .tg-verify-notification-toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-left: 6px solid #ffadad;
  color: #333;
  padding: 14px 18px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translateY(-15px);
  transition: all 0.4s ease;
  font-weight: 500;
}

.tg-verify-page .tg-verify-notification-toast.show {
  opacity: 1;
  transform: translateY(0);
}

.tg-verify-page .tg-verify-notification-toast.success {
  border-left-color: #90d26d;
}

.tg-verify-page .tg-verify-notification-toast.error {
  border-left-color: #ff7171;
}

.tg-verify-page .tg-verify-notification-toast.success i {
  color: #90d26d;
}

.tg-verify-page .tg-verify-notification-toast.error i {
  color: #ff7171;
}

@keyframes tg-verify-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 480px) {
  .tg-verify-page .tg-verify-card {
    padding: 28px 20px;
    border-radius: 14px;
  }

  .tg-verify-page .tg-verify-card h2 {
    font-size: 23px;
  }

  .tg-verify-page .tg-verify-card p,
  .tg-verify-page .tg-verify-input-group input {
    font-size: 14px;
  }

  .tg-verify-page .tg-verify-primary-btn,
  .tg-verify-page .tg-verify-secondary-btn {
    padding: 12px;
    font-size: 15px;
  }

  .tg-verify-page .tg-verify-notification-container {
    right: 10px;
    top: 10px;
    max-width: 90%;
  }
}