body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #1e1e1e;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.login-box {
  background-color: rgba(43, 43, 43, 0.2); /* 85% opaque */
  padding: 30px 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
 /* box-shadow: 0 0 20px rgba(0,0,0,0.4);*/
  box-shadow: 0 0 30px rgba(0, 87, 125, 0.5);
    opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.login-box h2 {
  margin-top: 0;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 10px;
  margin-bottom: 5px;
}

input {
  padding: 8px;
  margin-bottom: 16px;
  border-radius: 4px;
  border: none;
  font-size: 16px;
}

button {
  margin-top: 30px;
  padding: 12px 16px;
  background-color: #00577D;
  border: none;
  color: white;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
  background-color: #007baa;
  transform: translateY(-1px);
}


.flash {
  color: #f44336;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 600px) {
  body {
    padding: 20px;
    height: auto;
    align-items: flex-start;
  }

  .login-box {
    padding: 20px;
    border-radius: 8px;
    box-shadow: none;
    margin-top: 40px;
    /*box-shadow: 0 0 20px rgba(0,0,0,0.4); /* Match desktop style */
    box-shadow: 0 0 30px rgba(0, 87, 125, 0.5);
  }

  input, button {
    font-size: 1rem;
  }

}
.login-box {
  /* existing styles */
  margin-bottom: 40px;
}

.login-logo {
  display: block;
  margin: 0 auto 10px auto;
  max-height: 60px;
  width: auto;
}

.logo-wrapper {
  text-align: center;
  margin-bottom: 10px;
}



