/* Styles for Noorplay website */

/* Base transitions */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulse 2s infinite;
}
.logo-container {
  margin: 0.6rem 0;
  max-width: 180px;
  text-align: center;
}

.logo-container img {
  width: 75%;
  margin: auto;
}
/* Device icons hover effects */
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.img-wrapper {
  text-align: center;
}
.img-wrapper img {
  max-width: 500px;
  margin: auto;
}
img {
  width: 100%;
}
.error-box {
  background: #ffb4bc80;
  color: #f6051d;
  font-weight: 600;
  font-size: 14px;
}
.modren-card {
  background: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  max-width: 500px;
  width: 100%;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
#phoneForm #form-title {
  font-size: 16px;
  color: #666;
}
.device-icon:hover {
  transform: translateY(-5px) !important;
  filter: brightness(1.2);
}

/* Form focus effects */
#phoneInputContainer:focus-within,
#pinInputContainer:focus-within {
  border-color: currentColor;
  box-shadow: 0 6px 8px rgba(99, 102, 241, 0.3);
}

/* Button hover effects */
button[type="submit"] {
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(99, 102, 241, 0.3);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.red-button {
  background: #f8293d;
}
.red-button:hover {
  background: #f6051d;
}
/* Custom background and theme colors - removed hardcoded background */
body {
  background-image: url("images/kidzo_background.webp");
  backdrop-filter: brightness(0.7);
  background-size: cover;
  background-position: center;
}

/* This class is now replaced with theme-based gradients */
