:root {
  --accent-color: #224da8;
  --accent-secondary-color: #0671c0;
  --bg-dark: #0d0d0d;
}

/* Login Card */
.login-card {
  z-index: 1;
  width: 100%;
  /*max-width: 400px;*/
  padding: 20px;
  border-radius: 20px;
  background: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(12px);
  /*box-shadow: 0 0 40px rgb(6, 113, 192), inset 0 0 20px rgb(6, 113, 192);*/
  border: 1px solid rgb(6, 113, 192);
  text-align: center;
}

/* Titles */
.login-title {
  color: #fff;
  font-size: 28px;
  margin-bottom: 8px;
  font-weight: 600;
}

.login-subtitle {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Input Group */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 16px;
}

.input-group input {
  width: 100%;
  padding: 14px 14px 14px 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #121212;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.input-group input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgb(6, 113, 192);
}

/* Forgot Password Link */
.login-options {
  text-align: start;
  margin-bottom: 20px;
}

.forgot-link {
  font-size: 13px;
  color: var(--accent-color);
  text-decoration: none !important;
}

.forgot-link:hover { text-decoration: underline; }

/* Submit Button */
.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-secondary-color));
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.login-btn:hover {
  box-shadow: 0 0 25px rgb(6, 113, 192);
  transform: translateY(-2px);
}

/* Signup Text */
.signup-text {
  margin-top: 22px;
  font-size: 13px;
  color: #aaa;
}

.signup-text a {
  color: var(--accent-color);
  text-decoration: none !important;
  font-weight: 600;
}

.signup-text a:hover { text-decoration: underline; }

/* Responsive */
@media(max-width: 576px) {
  .login-card { padding: 30px 20px; }
}



.our-testimonial-auth {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Background Image */
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)
    ),
    url("../images/home/auth-bg.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0px !important;
}
.cb-cursor,
.cb-cursor * {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
.authLogo {
    height: 60px;
}

/*.our-testimonial-auth::before{
    content: '';
    display: block;
    position: absolute;
    left: -100px;
    bottom: 45%;
    background: url(../images/logo/logo-hero.webp) no-repeat;
    background-position: left center;
    background-size: cover;
    width: 360px;
    height: 240px;
    animation: tuberotate 12s infinite linear;
    animation-direction: alternate-reverse;
    z-index: -1;
}*/


.our-testimonial-auth::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 25%;
    width: 360px;
    height: 240px;
    background: url(../images/logo/logo-hero.webp) no-repeat center;
    background-size: contain;
    transform-style: preserve-3d;
    animation: rotateY360 25s linear infinite;
    z-index: -1;
}

/* Horizontal 360° rotation */
@keyframes rotateY360 {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.our-testimonial-auth::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 25%;
    width: 360px;
    height: 240px;
    background: url(../images/logo/logo-hero.webp) no-repeat center;
    background-size: contain;
    transform-style: preserve-3d;
    animation: rotateY360 25s linear infinite;
    animation-direction: alternate;
    z-index: -1;
}

/* SELECT BOX – AUTH UI */
.input-group select {
  width: 100%;
  padding: 14px 44px 14px 44px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #121212;
  color: #fff;
  font-size: 14px;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* FOCUS EFFECT (same as input) */
.input-group select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(255,45,45,0.4);
}

/* DROPDOWN OPTIONS */
.input-group select option {
  background-color: #121212;
  color: #ffffff;
}

/* REMOVE arrow from all input-groups */
.input-group::after {
  content: none;
}

/* ADD arrow ONLY for select fields */
.input-group:has(select)::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 12px;
  pointer-events: none;
}


/* HOVER */
.input-group select:hover {
  border-color: rgba(255,45,45,0.6);
}

/* DISABLED STATE */
.input-group select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* REMOVE DEFAULT ARROWS (IE / EDGE) */
select::-ms-expand {
  display: none;
}

.input-wrapper{
  text-align: start;
  margin-bottom: 10px;
}

.login-btn:disabled {
    background: slategrey !important;
    border: none;
    cursor: not-allowed;
    opacity: 0.75;
}


/* ================= CARD ================= */
.gaming-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.75)),
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.025),
      rgba(255,255,255,0.025) 2px,
      transparent 2px,
      transparent 8px
    ),
    #0b0b0b;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)) center center / cover no-repeat, url(../images/home/signup-modal-bg.jpg);
  background-position: center center;
}

/* ================= TECH BORDER ================= */
.gaming-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  background:
    linear-gradient(
      120deg,
      #224da8,
      #0671c0,
      #01a0e0
    );
  background-size: 250% 250%;
  animation: borderFlow 7s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

@keyframes borderFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ================= SCANLINE OVERLAY ================= */
.gaming-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.03),
      rgba(255,255,255,0.03) 1px,
      transparent 1px,
      transparent 4px
    );
  opacity: 0.15;
  pointer-events: none;
  z-index: 2;
}

/* ================= CONTENT LAYER ================= */
.card-content {
  position: relative;
  z-index: 3;
}

/* ================= ICON ================= */
.icon-circle {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(145deg, #ff3b3b, #8b0000);
  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.15),
    0 0 0 6px rgba(255,45,45,0.08);
}

/* ================= DETAILS ================= */
.detail-box {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.85));
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

/* ================= TEXT ================= */
.label-text {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
}

.value-text {
  color: #ffffff;
  font-weight: 500;
}

/* ================= BUTTON ================= */
.btn-danger {
  background: linear-gradient(135deg, #ff2d2d, #8b0000);
  border: none;
}
.btn-danger:hover {
  background: linear-gradient(135deg, #ff4d4d, #a50000);
}

/* ================= TITLE ================= */
h5 {
  letter-spacing: 1px;
}

.color-bor{
  background-color: transparent !important;
}

.close_modal{
  background: #01a0e0;
  border: 0px solid #01a0e0;
  color: #fff;
}