@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('../assets/fonts/NotoSansDevanagari-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('../assets/fonts/NotoSansDevanagari-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* Apply the font to your whole site or specific elements */
body, html {
  font-family: 'Noto Sans Devanagari', sans-serif;
}

 body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 'Noto Sans Devanagari', sans-serif;
    min-height: 100vh;
    background-image: url('image/background4.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #333;
  }

  .logo-header {
    text-align: center;
    padding-top: 30px;
    z-index: 1;
    position: relative;
  }

  .logo-header img {
    max-height: 70px;
    width: auto;
  }

  .login-container {
    max-width: 450px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.97);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
  }

  h3 {
    font-family: Calibri, 'Noto Sans Devanagari', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #0d6efd;
    text-align: center;
  }

  h4 {
    font-family: 'Noto Sans Devanagari', sans-serif;
    color: #0d6efd;
    text-align: center;
  }

  .form-label i {
    color: #0d6efd;
    margin-right: 6px;
  }

  .btn-primary {
    font-weight: bold;
    letter-spacing: 0.5px;
  }

  .already-login {
    font-size: 14px;
    margin-top: 20px;
    text-align: center;
  }

  .already-login a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: 500;
  }

  footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #0d6efd;
    padding: 10px 0;
    text-align: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  /* ✅ Responsive adjustments */
  @media (max-width: 768px) {
    body {
      background-attachment: scroll;
      background-size: cover;
    }

    .login-container {
      margin: 20px;
      padding: 25px;
      max-width: 100%;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    h3 {
      font-size: 22px;
    }

    h4 {
      font-size: 18px;
    }

    .logo-header img {
      max-height: 60px;
    }

    footer {
      font-size: 12px;
      padding: 8px 5px;
    }
  }

  @media (max-width: 480px) {
    .login-container {
      margin: 10px;
      padding: 20px;
    }

    .btn-primary {
      font-size: 14px;
      padding: 10px;
    }

    .form-control {
      font-size: 14px;
    }

    footer {
      position: relative;
      margin-top: 20px;
    }
  }