/* Styles for Noorplay website */

/* Base transitions */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

body {
  background: #732dd9;
  background: linear-gradient(
    180deg,
    rgba(115, 45, 217, 1) 25%,
    rgba(8, 142, 252, 1) 100%
  );
  /* background-image: url("images/texture.jpg"); */
  /* background-position: center; */
  /* background-size: cover; */
  position: relative;
}
body::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  opacity: 40%;
  background: #000000;
}

@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: 300px;
  text-align: center;
}

.logo-container img {
  width: 100%;
  margin: auto;
  /* filter: drop-shadow(0.1rem 0.2rem 0.1rem #000); */
}
.legal-text {
  position: relative;
}
.success-msg {
  color: #039201;
  font-weight: bold;
}
.footer {
  position: relative;
  text-align: center;
}
.footer a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 600;
}
.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: 40px 0 40px 0; */
  /* -moz-border-radius: 40px 0 40px 0; */
  border-radius: 1rem;
}
.lang-switcher {
  /* -webkit-border-radius: 20px 0 20px 0;
  -moz-border-radius: 20px 0 20px 0;
  border-radius: 20px 0 20px 0; */
  border-radius: 0.5rem;

  border: none;
  transition: all 1s ease;
}
.lang-switcher:hover {
  background-color: rgb(167, 211, 247);
  -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: 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);
}
.theme-btn {
  font-size: 18px;
  background: #f9756a;
  background: linear-gradient(360deg, #ff0505 25%, #f9756a 100%);
}

button[type="submit"]:active {
  transform: translateY(0);
}

.red-button {
  background: #1e1e1e;
}
.red-button:hover {
  background: #000000;
}
