/* Common Styles for All Pages  */
.triangle-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.triangle {
  position: absolute;
  width: 60px;
  opacity: 0.1;
  animation: scroll-up 10s linear infinite;
  pointer-events: none;
}
.triangle-10 { left: 10%; animation-delay: 0s; }
.triangle-20 { left: 20%; animation-delay: 0s; }
.triangle-30 { left: 30%; animation-delay: 0s; }
.triangle-40 { left: 40%; animation-delay: 0s; }
.triangle-50 { left: 50%; animation-delay: 0s; }
.triangle-60 { left: 60%; animation-delay: 0.1s; }
.triangle-70 { left: 70%; animation-delay: 0s; }
.triangle-75 { left: 75%; animation-delay: 0.1s; }
.triangle-85 { left: 85%; animation-delay: 0s; }


@keyframes scroll-up {
  0% {
    transform: translateY(100vh) rotate(0deg);
  }
  100% {
    transform: translateY(-200px) rotate(360deg);
  }
}

.triangle:nth-child(odd) {
  animation-duration: 6s;
}

.triangle:nth-child(even) {
  animation-duration: 4s;
}

.triangle:nth-child(3n) {
  animation-duration: 8s;
  opacity: 0.3;
  width: 80px;
}

/*  Layout Container Styles */
.auth-container {
  background-image: url('../media/bg1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.responsive-bg {
  background-image: url('../media/bg1.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
}

/*  Form Container Styles */
.form-container {
  box-shadow: black;
  background-color: #0000007a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/* Text Color Styles  */
.text-light-custom {
  color: #f7f5f5;
}

.text-orange {
  color: #ff6100;
}

.text-gold {
  color: #986923;
}

/*  Button Styles */
.btn-primary-custom {
  background-color: #ff6100;
  border: none;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid #ff6100;
  color: #ff6100;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-outline-custom:hover {
  background-color: #fff7ed;
}

/*  Input Field Styles  */
.input-custom {
  border: 1px solid #ccc;
  border-radius: 4px;
}

/*  Link Styles  */
.link-custom {
  color: #ff6100;
  /* text-decoration: underline; */
}

.link-hover:hover {
  color: #ff6100;
}

/*  Modal Styles  */
.modal-custom {
  max-width: 900px;
}

/*  Footer Styles */
.footer-custom {
  color: #f7f5f5;
}

.footer-link {
  color: #ff6100;
}

/*  login.php specific styles  */
.login-form-container {
  background-color: #0000007a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/*  signup.php specific styles  */
.signup-form-container {
  background-color: #0000007a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/*  reset_password.php specific styles  */
.reset-password-container {
  background-color: #0000007a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

/*  verify_otp.php specific styles */
.otp-container {
  background-color: #0000007a;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.otp-timer {
  color: #ff6100;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .responsive-bg {
    background-position: center;
    min-height: 100vh;
  }
  
  .form-container {
    margin: 10px;
    padding: 15px;
  }
}