/*-----------------------------------*
  #LOGIN PAGE CSS
*-----------------------------------*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background-color: #f4f6f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #2179FF;
  padding: 15px 30px;
}

.navbar img {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #F6BD26;
}

/* Hero Section */
.header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #2179FF, #1E6DE5);
  color: #fff;
}

.header .hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.header .hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Login Form */
.login-section {
  display: flex;
  justify-content: center;
  margin: 40px 20px;
}

.login-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  width: 100%;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.login-form h2 {
  text-align: center;
  color: #2179FF;
  margin-bottom: 20px;
}

.login-form input {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.login-form input:focus {
  outline: none;
  border-color: #2179FF;
  box-shadow: 0 0 5px rgba(33, 121, 255, 0.5);
}

.login-form button {
  padding: 12px 15px;
  border-radius: 8px;
  border: none;
  background-color: #2179FF;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background-color: #1E6DE5;
}

.login-form p {
  text-align: center;
  font-size: 0.9rem;
}

.login-form p a {
  color: #2179FF;
  text-decoration: none;
}

.login-form p a:hover {
  text-decoration: underline;
}

/* Login Message */
.login-message {
  text-align: center;
  font-weight: 600;
  color: red;
}

.hidden {
  display: none;
}

/* Footer */
.footer {
  text-align: center;
  padding: 25px 15px;
  background-color: #2179FF;
  color: #fff;
}

.footer .social {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.footer .social a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.2s ease;
}

.footer .social a:hover {
  color: #F6BD26;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
