/* Modernized DMS Login Styling with Premium Motion & Glassmorphism */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

* {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background-color: #0b0f19;
  background-image:
    radial-gradient(at 10% 20%, rgba(0, 242, 254, 0.15) 0px, transparent 50%),
    radial-gradient(at 90% 80%, rgba(79, 172, 254, 0.15) 0px, transparent 50%),
    url("../../images/Image_9.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Background Motion Drift */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.75) 0%, rgba(17, 24, 39, 0.75) 100%);
  z-index: -1;
}

/* Navigation Bar */
body .navigation-bar {
  background-color: rgba(11, 15, 25, 0.8) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 30px;
}

body .navigation-bar .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  margin: 0 10px;
  position: relative;
}

body .navigation-bar .nav-link:hover {
  color: #00f2fe;
}

body .navigation-bar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  transition: width 0.3s ease;
}

body .navigation-bar .nav-link:hover::after {
  width: 100%;
}

body .row {
  height: calc(100vh - 80px);
}

/* Fade-In Up Motion */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Left Section */
body .title {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 30px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

/* Right Section - Glassmorphic Card */
body .card {
  max-width: 460px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  height: auto;
  min-height: 380px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

body .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 242, 254, 0.15);
  border-color: rgba(0, 242, 254, 0.3);
}

body .card .card-header {
  background-color: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 25px 0 25px;
}

body .card-body {
  padding: 30px 35px;
}

/* Input Fields Focus Transitions */
body .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  margin-bottom: 20px !important;
  transition: all 0.3s ease;
}

body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body .form-control:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: #00f2fe;
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
  transform: scale(1.01);
}

/* Navigation Tabs */
body .nav-tabs {
  border-bottom: none;
}

body .nav-tabs .nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 16px;
  padding: 10px 20px;
  border: none;
  background: none;
  transition: all 0.3s ease;
}

body .nav-tabs .nav-link:hover {
  color: #00f2fe;
  border: none;
}

body .nav-tabs .nav-link.active {
  background-color: transparent !important;
  color: #00f2fe !important;
  font-weight: 700;
  border: none;
  position: relative;
}

body .nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #00f2fe, #4facfe);
  border-radius: 10px;
}

/* Button Pulse & Hover Scales */
body .btn-primary {
  width: 100%;
  background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-size: 16px;
  font-weight: 700;
  color: #0b0f19;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

body .btn-primary:hover {
  background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 242, 254, 0.5);
}

body .btn-primary:active {
  transform: translateY(0);
}