/* Styles for Noorplay website */

/* Base transitions */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

body {
  background: #54ebff;

  /* filter: progid: DXImageTransform.Microsoft.gradient( startColorstr="#FF1B6B", endColorstr="#45CAFF", GradientType=1 );
  color: black; */
}
/* body::before {
  content: "";
  /* background-image: url("images/texture_image.jpg"); 
  background-position: top center;
  background-size: cover;
  position: absolute;
  inset: 0;
  z-index: 0;
} */

@keyframes pulseBtn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1);
  }
}

.pulse {
  animation: pulseBtn 2s infinite;
}
.logo-container {
  margin: 0.6rem 0;
  max-width: 250px;
  text-align: center;
}

.logo-container img {
  width: 100%;
  margin: auto;
  position: relative;
  /* filter: drop-shadow(0.1rem 0.2rem 0.1rem #000); */
}
.footer-logo img {
  max-width: 180px;
}
.logo-animation {
  animation: floatUpDown 2s infinite;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  } /* Move up */
  100% {
    transform: translateY(0);
  } /* Back down */
}
.legal-text {
  position: relative;
}
.success-msg {
  color: #039201;
  font-weight: bold;
}
.footer {
  position: relative;
  text-align: center;
}
.footer a {
  color: #d5d4d4ff;
  opacity: 0.8;
}
.legal-text p {
  color: #ffffff;
}
/* Device icons hover effects */
.device-icon {
  transition: transform 0.3s ease, filter 0.3s ease;
}
.white-box {
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  margin-bottom: 15px;
  margin-top: 15px;
  position: relative;
  background: #ffffff;
}
.lang-switcher {
  -webkit-border-radius: 20px 0 20px 0;
  -moz-border-radius: 20px 0 20px 0;
  border-radius: 20px 0 20px 0;
  border: none;
  transition: all 1s ease;
}
.lang-switcher:hover {
  background-color: #95c500;
  -webkit-border-radius: 10px 0 10px 0;
  -moz-border-radius: 10px 0 10px 0;
  border-radius: 10px 0 10px 0;
}
.img-wrapper {
  text-align: center;
}
.error-box {
  background: #ffb4bc80;
  color: #f6051d;
  font-weight: 600;
  font-size: 14px;
}
.theme-icon {
  color: #ffffff;
}
#phoneForm #form-title {
  font-size: 14px;
  font-weight: bold;
}
.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;
  background: #358be7 !important;
}

/* .btn-blue {
  background: #f6051d;
} */

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);
  background: #f6051d;
}

.red-button {
  background: #95c500;
}
.red-button:hover {
  background: #536d03;
}
.error {
  color: #f6051d;
  margin-bottom: 2px;
}
.resend-btn {
  background: #039201;
  color: #f7f7f7;
  text-align: center;
  width: 100%;
  padding: 10px;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}
.resend-btn:disabled {
  background: #8d8d8d;
  text-align: center;
  width: 100%;
  padding: 10px;
  cursor: not-allowed;
  border-radius: 100px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
}

.progressbar {
  font-family: Arial, sans-serif;
  position: relative;
}
.progressbar .text-label {
  position: absolute;
  top: -25px;
  font-size: 14px;
}
.progressbar .steps {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.progressbar .step {
  background: #cccccc;
  min-width: 150px;
  height: 8px;
  border-radius: 10px;
}

.progressbar .step.active {
  background: #358be7;
}
