/* 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');

/* Base body styles */
body {
  font-family: 'Poppins', sans-serif;
  background: #203a43;
  color: #0e0c0c;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}

/* Top and bottom bars */
.top-line {
  background: #2c5364;
}

.bottom-line {
  background: #2c5364;
}

/* 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;
}

    /* Gorgeous search bar styling */
    .search-bar {
      max-width: 600px;
      margin: 50px auto;
      position: relative;
    }
    .search-input {
      border-radius: 50px;
      padding: 12px 50px 12px 20px;
      font-size: 1.1rem;
      border: 2px solid #007bff;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .search-input:focus {
      outline: none;
      border-color: #0056b3;
      box-shadow: 0 8px 20px rgba(0,123,255,0.3);
    }
    .search-icon {
      position: absolute;
      right: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #007bff;
      font-size: 1.2rem;
      cursor: pointer;
      transition: color 0.3s ease;
    }
    .search-icon:hover {
      color: #0056b3;
    }
