/* Input fields */
#mora-login-form input[type="email"],
#mora-login-form input[type="password"] {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  background: #fff;
  transition: border 0.3s;
}

#mora-login-form input:focus {
  border-color: #bc4a7e;
}

/* Password wrapper */
.password-wrapper {
  position: relative;
}

.password-wrapper .toggle-password-login {
  position: absolute;
  right: 12px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #999;
}

.password-wrapper .toggle-password-login i {
  font-size: 16px;
}

/* Button */
#mora-login-btn {
  width: 100%;
  background: #bc4a7e;
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

#mora-login-btn:hover {
  background: #a63c6d;
}

/* Error messages */
#mora-login-form .error {
  color: #d10000;
  font-size: 12px;
  margin-top: 4px;
}
