body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
  background-image: url("/img/FN-SLIDER-2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.login-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 350px;
  text-align: center;
  position: relative;
  margin: 1rem;
}

h1 {
  color: #333;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

input {
  width: 100%;
  padding: 0.5rem 0.5rem 0.5rem 30px;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

input:focus {
  outline: none;
  border-color: #007bff;
}

button {
  width: 100%;
  padding: 0.5rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056b3;
}

#error-message {
  color: #d9534f;
  margin-top: 10px;
  font-size: 0.9em;
}

.input-group i {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
}

.logo {
  width: 80%;
  max-width: 250px;
  margin-bottom: 25px;
}

@media (max-width: 400px) {
  .login-container {
    padding: 1.5rem;
  }

  input, button {
    padding: 0.5rem;
  }

  .logo {
    width: 100%;
    max-width: 200px;
  }
}