:root{
    --btnCustom-grad-shadow:#23395e;
    --btnCustom-grad-start:#023D50;
    --btnCustom-grad-stop:#127BCA;
    --btnCustom-grad-border:#FFB400;
    --btnCustom-grad-text:#ffffff;
    --btnCustom-grad-text-shadow:#263666;
    --btngrad-border-colour:#8F8F8F;
    --btngrad-1-colour:#CFCFCF;
    --btngrad-2-colour:#DFDFDF;
    --btngrad-3-colour:#EFEFEF;
    --btngrad-4-colour:#FFFFFF;
    --tooltip-background:#555;
    --tooltip-foreground:#FFF;
    --tooltip-border:#023D50;
    --dropmenu-selected:#CCCCCC;
    --dropmenu-background:#F9F9F9;
    --object-background:#36393b;
    --object-foreground:#000000;
    --title-foreground:#FFFFFF;
    --modal-background:#FEFEFE;
    --modal-border:#888;
    --modal-close-unselected:#AAA;
    --modal-close-selected:#000000;
    --link-unselected:#8888FF;
    --link-shadow:#000000;
    --error-text:#FF2800;
    --table-border:#DDDDDD;
    --table-stripe1:#CCCCCC;
    --table-stripe2:#FFFFFF;
    --list-hover-highlight:rgba(255,255,220, 0.3);
    --spinner-backcolor:#F3F3F3;
    --special-color1:#FFB400;
    --special-color2:#023D50;
    --special-color3:#127BCA;
    --special-color4:#5EC9EC;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px rgba(255,255,255,0.08) inset !important; /* your background */
    -webkit-text-fill-color: #fff !important; /* your text color */
    transition: background-color 5000s ease-in-out 0s;
}
body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1c2c; /* just placeholder */
}

.login-title{
	font-size:2.5em;
	font-weight:bold;
}

/* Glass Card */
.login-card {
  width: 360px;
  padding: 40px 30px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(94,201,236, 0.8);
    
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 0 30px rgba(0, 180, 255, 0.25),
    inset 0 0 20px rgba(255, 255, 255, 0.05);

  color: #fff;
  text-align: center;
}
.login-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Title */
.login-card h2 {
  margin-bottom: 30px;
  font-weight: 500;
}

/* Inputs */
.input-group {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 20px;
  padding: 12px 15px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

.input-group .icon {
  opacity: 0.8;
}
.icon {
    width: 32px;
    height: 32px;
    vertical-align: middle;
    margin-right: 5px;
}

.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 14px;
}

/* Placeholder color */
.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

/* Forgot */
.forgot {
  text-align: right;
  font-size: 12px;
  margin-bottom: 25px;
  opacity: 0.7;
  cursor: pointer;
}


.glow-btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

@keyframes glowPulse {
  0%   { box-shadow: 0 0 15px rgba(0,150,255,0.6); }
  50%  { box-shadow: 0 0 30px rgba(0,200,255,0.9); }
  100% { box-shadow: 0 0 15px rgba(0,150,255,0.6); }
}

.glow-btn:hover {
  animation: glowPulse 1.5s infinite;

  transform: translateY(-2px) scale(1.02);

  border-color: rgba(0, 220, 255, 1);

  box-shadow:
    inset 0 2px 10px rgba(255,255,255,0.3),
    inset 0 -2px 10px rgba(0,0,0,0.5),
    0 0 20px rgba(0, 200, 255, 0.9),
    0 0 40px rgba(0, 200, 255, 0.6),
    0 0 80px rgba(0, 200, 255, 0.4);
}


.glow-btn:active {
  transform: translateY(1px) scale(0.98);

  box-shadow:
    inset 0 4px 12px rgba(0,0,0,0.7),
    inset 0 -1px 5px rgba(255,255,255,0.2),
    0 0 10px rgba(0,150,255,0.6);
}
/* Button */
.login-btn {
  width: 100%;
  padding: 14px;
  border-radius: 30px;
  border: none;
  cursor: pointer;

  background: linear-gradient(
    to bottom,
    var(--btnCustom-grad-stop),
    var(--btnCustom-grad-start));
  color: white;
  font-size: 22px;


  box-shadow:
    inset 0 3px 10px rgba(255,255,255,0.25),
    inset 0 -3px 10px rgba(0,0,0,0.5),
    0 0 15px rgba(94,201,236,0.8),
    0 0 30px rgba(94,201,236,0.5);

  transition: 0.3s;

}
.login-btn:hover {
  box-shadow:
    inset 0 2px 10px rgba(255,255,255,0.4),
    inset 0 -2px 10px rgba(0,0,0,0.5),
    0 0 25px rgba(0, 220, 255, 1),
    0 0 60px rgba(0, 220, 255, 0.7),
    0 0 120px rgba(0, 220, 255, 0.4);
}

/* Register */
.register {
  margin-top: 20px;
  font-size: 13px;
  opacity: 0.8;
}
.fakelink {
	 margin-left: 10px;
     cursor:pointer;
     color: #EEE;
     text-decoration:underline;
     text-shadow:none;
     font-size: 16px;
}

.fakelink:hover {
     text-decoration: none;
     color: var(--special-color1);
     text-shadow: 1px 1px 1px var(--link-shadow);
     font-size: 16px;
}
input:focus {
    outline: none;
    box-shadow: none;
}