:root{
    --bg1:#0b1624;          /* deep navy */
    --bg2:#0a2a3a;          /* blue-teal */
    --card: rgba(255,255,255,.10);
    --border: rgba(255,255,255,.18);
    --text: rgba(255,255,255,.94);
    --muted: rgba(255,255,255,.70);
    --accent: #36708d;
    --accent-soft: #597c93;
    --shadow: 0 20px 60px rgba(0,0,0,.45);
    --radius: 18px;
}


*{box-sizing:border-box}
html,body{height:100%}
body{
	margin:0;
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
	color: var(--text);
}

.login-bg{
	min-height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:36px 18px;
	background:
		radial-gradient(1200px 600px at 20% 10%, rgba(65, 186, 255, .28), transparent 60%),
		radial-gradient(900px 520px at 80% 20%, rgba(112, 82, 255, .22), transparent 55%),
		linear-gradient(160deg, var(--bg1), var(--bg2));
	position:relative;
	overflow:hidden;
}

/* subtle grid */
.login-bg::before{
	content:"";
	position:absolute;
	inset:0;
	background-image:
		linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
	background-size: 48px 48px;
	opacity:.25;
	pointer-events:none;
	transform: translateY(-10px);
	}

	.login-card{
	width: min(420px, 100%);
	border-radius: var(--radius);
	background: var(--card);
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	position:relative;
	padding: 22px 22px 18px;
}

.brand{
	display:flex;
	gap:12px;
	align-items:center;
	margin-bottom:18px;
}

.logo{
  width:100%;
  height:144px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.45), transparent 55%),
    linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden; /* keeps rounded corners */
}

/* Logo image */
.logo img{
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}



.brand-name{font-weight:700; letter-spacing:.2px; font-size:16px}
.brand-sub{
    display: flex;
    color:var(--muted); 
    font-size:13px; 
    margin-top:2px;
    justify-content: center;
}

.login-form{display:flex; flex-direction:column; gap:12px}

.field span{
	display:flex;
	color: var(--muted);
	font-size:12px;
	margin: 0 0 6px 2px;
}

.field input{
	width:100%;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,.14);
	background: rgba(0,0,0,.20);
	color: var(--text);
	padding: 12px 12px;
	outline: none;
	font-size: 14px;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.field input:focus{
	border-color: rgba(65,186,255,.55);
	box-shadow: 0 0 0 4px rgba(65,186,255,.18);
	background: rgba(0,0,0,.26);
}

.row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:10px;
	margin-top:2px;
}

.check{
	display:flex;
	align-items:center;
	gap:8px;
	color: var(--muted);
	font-size: 13px;
}
.check input{accent-color: rgba(65,186,255,.9);}

.link{
	color: rgba(65,186,255,.9);
	text-decoration: none;
	font-size: 13px;
}
.link:hover{ text-decoration: underline; }

.btn{
  margin-top: 6px;
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing:.2px;
  color: rgba(255,255,255,.96);
  cursor:pointer;

  /* PURE BLUE GRADIENT */
  background: linear-gradient(135deg, #25709b, #7d9ead);

  box-shadow: 0 14px 32px rgba(0,0,0,.40);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}

.btn:hover{ filter: brightness(1.05); }
.btn:active{
  transform: translateY(1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}


	.fineprint{
	margin-top: 10px;
	color: rgba(255,255,255,.55);
	font-size: 12px;
	text-align:center;
	}
.SSO_login {
	display: none;
}

/* marquee layer sits behind the card but above the base background */
.bg-marquee{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index:0;
}

/* soft mask so band fades at edges */
.bg-marquee::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to right,
      rgba(11,22,36,1) 0%,
      rgba(11,22,36,0) 15%,
      rgba(11,22,36,0) 85%,
      rgba(11,22,36,1) 100%);
  mix-blend-mode: normal;
  pointer-events:none;
  z-index:2;
}

/* the scrolling strip */
.bg-track{
  position:absolute;
  left:0;
  right:0;
  top: 40%;
  height: 110px;            /* band height */
  display:flex;
  align-items:center;
  gap: 26px;
  opacity: .55;
  filter: blur(.1px);
  z-index:1;

  /* animation */
  animation: marquee 38s linear infinite;
  will-change: transform;
}

/* two sets side-by-side create the endless loop */
.bg-set{
  display:flex;
  align-items:center;
  gap: 26px;
}

/* the images */
.bg-set img{
  height: 400px;             /* image size */
  width: auto;
  opacity: .22;             /* translucency */
  filter: blur(.2px) saturate(1.05);
  transform: translateZ(0);
}



/* endless scroll (translate one full set width) */
@keyframes marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ensure your card stays above background layers */
.login-card{
  position:relative;
  z-index:3;
}
