@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body,html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
   height: 100%;
   overflow-x: hidden; 
  overflow-y: auto; 
}

/* Fullscreen Background Image with Gradient Overlay */
.bg-image {
  background: linear-gradient(
      rgba(18, 18, 18, 0.7),
      rgba(18, 18, 18, 0.7)
    ),
    url('assets/images/login-bg.png') no-repeat center center/cover;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Optional radial background overlay (can be removed if not needed) */
.background-overlay::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: radial-gradient(circle at top left, #ff6ec4, #7873f5);
  opacity: 0.12;
  z-index: 0;
}

/* Login Card with Glassmorphism */
.glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  width: 360px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Brand Text */
.brand {
  font-weight: 700;
  font-size: 1.7rem;
  color: #ff9800;
  display: inline-block;
  background: linear-gradient(to right, #ff6ec4, #7873f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Input Styling */
.form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.form-control:focus {
  box-shadow: 0 0 10px #ff9800;
  border-color: #ff9800;
  background: rgba(255, 255, 255, 0.25);
}

.form-control::placeholder {
  color: #ddd;
}

/* Login Button */
.btn-primary {
  background: linear-gradient(135deg, #ff6ec4, #7873f5);
  border: none;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7873f5, #ff6ec4);
  transform: scale(1.03);
}
.navbar .nav-link.active {
  color: #ffc107 !important;
  font-weight: bold;
  text-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
}
.glassy {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.text-gradient {
  background: linear-gradient(90deg, #6f42c1, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-gradient {
  background: linear-gradient(45deg, #0d6efd, #6610f2);
  color: white;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(45deg, #6610f2, #0d6efd);
  transform: scale(1.03);
}
.form-control {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 12px 16px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.05);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-control:focus {
  background: rgba(255, 255, 255, 0.25);
  border-color: #0dcaf0;
  box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.25);
  color: #fff;
  outline: none;
}
.form-control[readonly] {
  background: rgba(255, 255, 255, 0.08);
  color: #ffc107; /* or any visible accent color */
  cursor: not-allowed;
  font-weight: 500;
}
.notifyjs-bootstrap-base {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.notifyjs-bootstrap-success {
  background-color: #2ecc71;
  color: white;
}

.notifyjs-bootstrap-error {
  background-color: #e74c3c;
  color: white;
}