html,
body {
  height: 100%;
  margin: 0;
  font-family: "Arial", sans-serif;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("../img/Background.jpg") no-repeat center center fixed; /* Use your PNG background */
  background-size: cover;
}

/* Login form styling */
.form-signin {
  background: rgba(255, 255, 255, 0.85); /* Add slight transparency */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group input {
  width: 100%;
  height: 3.125rem;
  padding: 0.75rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  text-align: center;
}

.form-label-group input:focus {
  border-color: #6a8cf7;
  box-shadow: 0 0 8px rgba(106, 140, 247, 0.3);
}

/* Submit Button styling */
button.btn {
  background-color: #2a166d;
  color: #fff;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

button.btn:hover {
  background-color: #4b4f96;
}

/* Footer text color */
.text-muted {
  color: #777;
  font-size: 0.875rem;
}

h1 {
  font-size: 2rem;
  color: #2a166d;
}

/* Welcome text styling */
.welcome-text h1 {
  font-size: 4.5rem;
  color: #2a166d;
  margin: 0;
}

.welcome-text h1 strong {
  font-size: 4.8rem;
  color: #2a166d;
}

.welcome-text p {
  font-size: 1.5rem;
  color: #0e0e0f;
  margin-top: 10px;
  line-height: 1.5;
  letter-spacing: 0.4rem;
}

@media (max-width: 992px) {
  .welcome-text {
    display: none;
  }
}
