/* login.css */
body {
    font-family: Arial, sans-serif;
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
  }


  /* Navbar */
  .fixed-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #2A0E61, #1B1E4B);

    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    

}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;

    
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    margin-right: 10px;
}

.logo-text a {
    text-decoration: none; /* Remove underline */
    color: white; /* Keep the same text color */
    font-weight: bold; /* Make it bold */
    font-size: 20px; /* Adjust the font size */
}

.logo-text a:hover {
    color: #c8d2dd; /* Change color on hover */
    transition: 0.3s ease-in-out;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    text-decoration: none;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
}

/* Hover Effect */
.nav-links a:hover {
    color: #ffcc00; /* Changes text color on hover */
    font-size: 19px; /* Slightly increases font size */
    text-decoration: none;
}
 
/* Login Container */
.login-container {
  background: #fff;
  padding: 45px;
  border-radius: 14px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 420px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.login-container:hover {
  transform: translateY(-5px);
}

h1 {
  margin-bottom: 20px;
  font-size: 28px;
  color: #3b007a;
  font-weight: 700;
}

form {
  display: flex;
  flex-direction: column;
}

input {
  padding: 14px;
  margin-bottom: 18px;
  border: 1px solid #bbb;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

input:focus {
  border-color: #ffcc00;
  outline: none;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}

button {
  padding: 14px;
  background: linear-gradient(to right, #ffcc00, #ffdb4d);
  color: #3b007a;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: linear-gradient(to right, #ffb700, #ffcc00);
  transform: scale(1.05);
}

p {
  margin-top: 18px;
  color: #444;
  font-size: 15px;
}

p a {
  color: #6a0dad;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease-in-out;
}

p a:hover {
  text-decoration: underline;
  color: #3b007a;
}

#error-message {
  color: red;
  font-size: 14px;
  margin-top: -10px;
  font-weight: 500;
}
#reset-message {
  margin-top: 10px;
  color: #ff0000;
  font-size: 14px;
}
