body {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

.login-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('gate_desk.png');
  filter: blur(2px);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.login-form {
    position: relative;
    background: rgba(255,255,255,.2);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}

/* ... rest of your styles ... */


.login-form h1 {
  margin-bottom: 20px;
  margin-top: 0px;;
  color: darkblue; /* Dark blue text color */
  font-size: 2.5rem; /* Increased font size */
}

.login-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: #f5f5f5; /* Medium grey text color */
}

.login-form input {
  width: 100%;
  background: #90cde65e; /* Light grey background color */
  padding: 15px;
  color: #fff;
  margin-bottom: 20px;
  box-sizing: border-box;
  border: 1px solid #a5d3e588; /* Light grey border */
  border-radius: 10px;
  font-size: 16px;
}
.login-form input::placeholder{
  color: #fff;
  letter-spacing: 2px;
}

.role-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.column{
  display: flex;
}
.role-row label {
  font-size: 16px;
  margin-right: 5px;
  margin-left: 5px;
}

.login-form button {
  background-color: #0C356A;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.login-form button:hover {
  background-color: darkblue; /* Darker green on hover */
}

.signup-button, .forget-password{
  color: #104891;
}
footer {
  position: fixed;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0c356ab4;
  color: #f5f5f5;
  height: fit-content;
  width: 100%;
  z-index: 100;
  padding: 0 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

footer p {
  font-size: 0.6rem;
  margin-top: 3px;
  margin-bottom: 0px;
  padding: 3px;
}

ul {
  list-style: none; /* Remove default list styling */
  padding: 0;
  margin: 0;
}

li {
  font-size: 0.8rem;
  display: inline-block; /* Display list items in the same row */
  margin-right: 15px; /* Adjust spacing between items */
}

a {
  text-decoration: none; /* Remove default underline */
  color: white; /* Set text color to white */
}

a:hover{
  color: #14af8d;
}

i {
  margin-right: 5px; /* Adjust spacing between icon and text */
}


@media (max-width: 768px) {
  .login-form {
    width: 70%;
    min-height: 350px;
    position: absolute;
    top: 10%;
  }
  .login-container::before {
    background-image: url("./gate_mobile.png");
  }
}

