.email-verify-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.email-verify-content {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  text-align: center;
}

.email-verify-header {
  margin-bottom: 20px;
  color: #0064e4;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-verify-header i {
  font-size: 24px;
  margin-right: 10px;
}

.email-verify-body {
  margin-bottom: 20px;
}

.email-verify-body p {
  margin-bottom: 10px;
  color: #555;
}

.email-verify-footer {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.email-verify-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s ease;
}

.email-verify-primary {
  background-color: #0064e4;
  color: white;
}

.email-verify-primary:hover {
  background-color: #0056c7;
}

.email-verify-secondary {
  background-color: #f1f1f1;
  color: #333;
}

.email-verify-secondary:hover {
  background-color: #e1e1e1;
}
