/* Login Page Styles */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;

  /* Background school image */
  background: url("../images/mpnag_bg.jpg") no-repeat center center fixed;
  background-size: cover;
  font-family: Arial, sans-serif;
}

.login-container {
  background-color: rgba(35, 39, 42, 0.7); 
  backdrop-filter: blur(5px); 
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.logo {
  width: 70px;
  margin-bottom: 15px;
}

h2 {
  margin-bottom: 30px;
  font-size: 18px;
  color: #fff;
}

.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px;
  border: none;
  border-radius: 5px;
  background-color: rgba(64, 68, 75, 0.8);
  color: white;
  font-size: 14px;
  box-sizing: border-box;
}

.input-group input:focus {
  outline: none;
  background-color: rgba(80, 85, 92, 0.9);
}

.input-group .icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #ccc;
}

.btn-login {
  background-color: #e74c3c;
  border: none;
  padding: 12px;
  width: 100%;
  color: white;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-login:hover {
  background-color: #c0392b;
}

.btn-login.is-loading,
.btn-login:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.forgot-password {
  display: block;
  margin-top: 15px;
  font-size: 12px;
  color: #eee;
}

.forgot-password:hover {
  text-decoration: underline;
}

.error-message {
  color: #ff6b6b;
  font-size: 13px;
  margin-bottom: 15px;
}

.captcha-container {
  display: flex;
  justify-content: center;
  margin: 12px 0 18px 0;
}
