/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom, #e3f2fd, #ffffff);
  color: #0e0c0c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
}

/* Navbar */
.top-line {
      background-image: -webkit-linear-gradient(top, #1488cc, #2b32b2);
}
.bottom-line {
  background-color: black;
}
 
/* (Keep your other login-card, form, button styles here as you already wrote) */

.navbar-brand {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
    margin-right:0rem !important;
    margin-left:0.5rem !important;
    font-size: 1.25rem;
    text-decoration: none;
    white-space: nowrap;
/* Navbar toggler button */
.navbar-toggler {
  background-color: #dc3545; /* Bootstrap danger red */
  border-color: #dc3545;
}

/* White hamburger icon */
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30'
  xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)'
  stroke-width='2' stroke-linecap='round' stroke-miterlimit='10'
  d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Login card container */
.login-card {
  background-color: rgba(44, 83, 100, 0.3);
  backdrop-filter: blur(10px); /* glass effect */
  padding: 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  margin: auto; /* center horizontally */
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Login card heading */
.login-card h4 {
  font-weight: 600;
  color: #7ae7fc;
  margin-bottom: 20px;
  text-align: center;
}

/* Logo inside card */
.login-card img {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto 15px auto;
}

/* Form labels */
.form-label {
  font-weight: 500;
  color: #7ae7fc;
}

/* Input fields */
.form-control {
  height: 45px;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: rgba(44, 83, 100, 0.1); /* subtle background */
  color: #0e0c0c;
}

/* Login button */
.btn-login {
  background-color: #be8b00;
  color: #fff;
  border: none;
  height: 45px;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.btn-login:hover {
  background-color: #e8431f;
}

/* Alert box */
.alert {
  font-weight: 500;
  text-align: center;
  margin-bottom: 15px;
}

/* Links inside card */
.login-card a {
  color: #7ae7fc;
  font-weight: 500;
  text-decoration: none;
}

.login-card a:hover {
  text-decoration: underline;
  color: #be8b00;
}
#footer-area{
  background-color: brown;
}
