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

.glass-effect {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-input {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.2);
  outline: none;
}

.gradient-bg {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

/* home */

.gradient-text {
  background: linear-gradient(90deg, #818cf8, #c084fc);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* purchase  */

.QRcodeBox {
  width: 10rem;
  justify-self: center;
}

/* signup */
.glass-box {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.input-style {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(71, 85, 105, 0.5);
  transition: all 0.3s ease;
}

.input-style:focus {
  border-color: #818cf8;
  background: rgba(30, 41, 59, 0.8);
  outline: none;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.2);
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  filter: blur(80px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
}

.profile-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.islive {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 50% !important;
  background-color: green !important;
  color: green;
}

.isnotlive {
  width: 2rem !important;
  height: 2rem !important;
  border-radius: 50% !important;
  background-color: rgb(255, 0, 0) !important;
  color: rgb(255, 0, 0);
}

.request-card {
  background: #1e293b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.request-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
}

.imageWarning{
  font-size: small;
}