.custom-toast {
  padding: 0.5rem 1rem !important;
  font-size: 0.875rem;
}

.red-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
  margin-top: 24px;
}

body {
  font-family: "Inter", sans-serif;
}

.modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
}

.modal-content.hide {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.4);
}

.modal-content.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-input:focus {
  box-shadow: 0 0 0 1px #ef4444, 0 0 0 1px red;
  outline: none;
}

.form-input {
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  color: white;
  border: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.hero-gradient {
  background: radial-gradient(
    ellipse at center,
    rgba(120, 119, 198, 0.15) 0%,
    transparent 70%
  );
}
.gradient-bg {
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
